using DS.Module.Core; using SqlSugar; namespace DS.WMS.Core.Code.Dtos; /// /// 第三方账户信息返回 /// public class CodeThirdPartyRes { /// /// 主键Id /// public long Id { get; set; } /// /// 账号类型 /// public string AccountType { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } /// /// 客户类型 /// public string CustomerType { get; set; } /// /// 客户Id /// public long CustomerId { get; set; } /// /// 账户key /// public string AppKey { get; set; } /// /// 账户密钥 /// public string AppSecret { get; set; } /// /// 状态 0 启用 1 禁用 /// public StatusEnum? Status { get; set; } = StatusEnum.Enable; /// /// 备注 /// public string Note { get; set; } = ""; /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 是否为公司账号 true-是 false-否 /// public bool IsCompany { get; set; } /// /// 备案代码 /// public string RegistPartyCode { get; set; } /// /// 备案全称 /// public string RegistPartyName { get; set; } /// /// 联系人 /// public string RegistContractName { get; set; } /// /// 联系邮箱 /// public string RegistContractEmail { get; set; } }