| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace AI.Platform.Core.Dto.MemberManagement
- {
- public class Customer
- {
- public long? Id { get; set; }
- public string CustomerName { get; set; } = string.Empty;
- public string CustomerCode { get; set; } = string.Empty;
- public string Site { get; set; } = string.Empty;
- public long? SiteID { get; set; }
- public string InvoiceTitle { get; set; } = string.Empty;
- public string TaxNumber { get; set; } = string.Empty; // 新增:税号
- public string CompanyRegisteredAddress { get; set; } = string.Empty; // 新增:公司注册地址
- public string CompanyPhone { get; set; } = string.Empty; // 新增:公司注册电话
- public string ContactAddress { get; set; } = string.Empty; // 新增:公司联系地址
- public string CompanyEmail { get; set; } = string.Empty; // 新增:公司邮箱
- public decimal CardBalance { get; set; }
- public string Status { get; set; } = "正常";
- public DateTime? RegisterTime { get; set; } = DateTime.Now;
- }
- }
|