namespace MES.Service.Dto.webApi; public class ErpCustomer { //ERP傳輸過來的數據存儲在這裡//json格式小寫 public string? Type { get; set; } public string? Id { get; set; }//改为非必填 public string FNumber { get; set; }//客户编码 public string? FShortName { get; set; }//客户简称 public string? FName { get; set; }//客户名称 public string? Fcontact { get; set; }//联系人名称? public string? Fmobilephone { get; set; }//联系人移动电话 public string? Fseller { get; set; }//销售员 public string? FForbidStatus { get; set; }//禁用状态 public string? remark3 { get; set; }//快捷码 public string? FCreateOrgId { get; set; } public string? FUseOrgId { get; set; } public string? FDescription { get; set; } public string? FDocumentStatus { get; set; } }