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

71 lines
1.9 KiB
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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-23 .
/// </summary>
[SugarTable("WFORM_SALESORDERENTRY")]
[Tenant(ClaimConst.TENANTID)]
public class SalesOrderEntryEntity : EntityBase<string>
{
/// <summary>
/// 订单主键.
/// </summary>
[SugarColumn(ColumnName = "F_SALESORDERID")]
public string SalesOrderId { get; set; }
/// <summary>
/// 商品名称.
/// </summary>
[SugarColumn(ColumnName = "F_GOODSNAME")]
public string GoodsName { get; set; }
/// <summary>
/// 规格型号.
/// </summary>
[SugarColumn(ColumnName = "F_SPECIFICATIONS")]
public string Specifications { get; set; }
/// <summary>
/// 单位.
/// </summary>
[SugarColumn(ColumnName = "F_UNIT")]
public string Unit { get; set; }
/// <summary>
/// 数量.
/// </summary>
[SugarColumn(ColumnName = "F_QTY")]
public string Qty { get; set; }
/// <summary>
/// 单价.
/// </summary>
[SugarColumn(ColumnName = "F_PRICE")]
public decimal? Price { get; set; }
/// <summary>
/// 金额.
/// </summary>
[SugarColumn(ColumnName = "F_AMOUNT")]
public decimal? Amount { get; set; }
/// <summary>
/// 描述.
/// </summary>
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string Description { get; set; }
/// <summary>
/// SortCode.
/// </summary>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
}
}