using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys; /// /// 销售订单 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2018-07-11 . /// [SugarTable("WFORM_SALESORDER")] [Tenant(ClaimConst.TENANTID)] public class SalesOrderEntity : EntityBase { /// /// 流程主键. /// [SugarColumn(ColumnName = "F_FLOWID")] public string FlowId { get; set; } /// /// 流程标题. /// [SugarColumn(ColumnName = "F_FLOWTITLE")] public string FlowTitle { get; set; } /// /// 流程等级. /// [SugarColumn(ColumnName = "F_FLOWURGENT")] public int? FlowUrgent { get; set; } /// /// 流程单据. /// [SugarColumn(ColumnName = "F_BILLNO")] public string BillNo { get; set; } /// /// 业务人员. /// [SugarColumn(ColumnName = "F_SALESMAN")] public string Salesman { get; set; } /// /// 客户名称. /// [SugarColumn(ColumnName = "F_CUSTOMERNAME")] public string CustomerName { get; set; } /// /// 联系人. /// [SugarColumn(ColumnName = "F_CONTACTS")] public string Contacts { get; set; } /// /// 联系电话. /// [SugarColumn(ColumnName = "F_CONTACTPHONE")] public string ContactPhone { get; set; } /// /// 客户地址. /// [SugarColumn(ColumnName = "F_CUSTOMERADDRES")] public string CustomerAddres { get; set; } /// /// 发票编码. /// [SugarColumn(ColumnName = "F_TICKETNUM")] public string TicketNum { get; set; } /// /// 开票日期. /// [SugarColumn(ColumnName = "F_TICKETDATE")] public DateTime? TicketDate { get; set; } /// /// 发票类型. /// [SugarColumn(ColumnName = "F_INVOICETYPE")] public string InvoiceType { get; set; } /// /// 付款方式. /// [SugarColumn(ColumnName = "F_PAYMENTMETHOD")] public string PaymentMethod { get; set; } /// /// 付款金额. /// [SugarColumn(ColumnName = "F_PAYMENTMONEY")] public decimal? PaymentMoney { get; set; } /// /// 销售日期. /// [SugarColumn(ColumnName = "F_SALESDATE")] public DateTime? SalesDate { get; set; } /// /// 相关附件. /// [SugarColumn(ColumnName = "F_FILEJSON")] public string FileJson { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } }