using AutoMapper.Execution; using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Diagnostics.Metrics; using System.Diagnostics; using System.Globalization; using System.Linq; using System.Net; using System.Net.NetworkInformation; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; using Volo.Abp; using Business.EntityFrameworkCore; using Business.Models; namespace Bussiness.Model.SystemData { /// /// 客户 /// public class wms_customer:BaseEntity { /// /// 客户主键id /// [Key] public long customer_id { get; set; } /// /// 客户编号 /// [StringLength(80)] public string customer_no { get; set; } /// /// 客户名称 /// [StringLength(255)] public string customer_name { get; set; } /// /// 客户级别 /// [StringLength(255)] public string customer_level { get; set; } /// /// 手机号码 /// [StringLength(80)] public string mobile { get; set; } /// /// 电话号码 /// [StringLength(80)] public string telephone { get; set; } /// /// 邮件地址 /// [StringLength(80)] public string email { get; set; } /// /// 联系人 /// [StringLength(80)] public string contact { get; set; } /// /// 邮政编码 /// [StringLength(80)] public string post_code { get; set; } /// /// 国别地区 /// [StringLength(255)] public string country { get; set; } /// /// 省份 /// [StringLength(255)] public string province { get; set; } /// /// 城市 /// [StringLength(255)] public string city { get; set; } /// /// 区 /// [StringLength(255)] public string region { get; set; } /// /// 地址 /// [StringLength(255)] public string address { get; set; } /// /// 销售模式 /// [StringLength(255)] public string sale_mode { get; set; } /// /// 客户简称 /// [StringLength(255)] public string short_name { get; set; } /// /// 客户简码 /// [StringLength(255)] public string short_number { get; set; } /// /// 状态 /// [Required] public int state { get; set; } /// /// 增值税率 /// [DecimalPrecision(18,10)] public decimal value_add_rate { get; set; } /// /// 默认运输提前期_天 /// [Required] public int carrying_aos { get; set; } /// /// 法人代表 /// [StringLength(255)] public string corperate { get; set; } /// /// 结算币种 /// [StringLength(80)] public string currency { get; set; } /// /// 专营业务员 /// [StringLength(80)] public string employee_name { get; set; } /// /// 专营业务员_工号 /// [StringLength(80)] public string employee_no { get; set; } /// /// 操作时间 /// [StringLength(80)] public string op_time { get; set; } /// /// 客户类别编码 /// [StringLength(255)] public string cust_type_number { get; set; } /// /// 客户类别 /// [StringLength(255)] public string cust_type { get; set; } /// /// 客户分组编号 /// [StringLength(255)] public string cust_group_number { get; set; } /// /// 客户分组名称 /// [StringLength(255)] public string cust_group_name { get; set; } } }