Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Entity/WorkFlowForm/SalesOrderEntity.cs
2023-03-13 15:00:34 +08:00

118 lines
2.9 KiB
C#
Raw Blame History

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