using SqlSugar;
|
|
namespace NewPdaSqlServer.entity;
|
|
[SugarTable("ERP_MES_KC")]
|
public class ErpMesKc
|
{
|
/// <summary>
|
/// 默认值: (newid())
|
/// </summary>
|
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
|
public Guid ID { get; set; }
|
|
[SugarColumn(ColumnName = "FNUMBER")]
|
public string? FNumber { get; set; }
|
|
[SugarColumn(ColumnName = "FQTY")]
|
public decimal? FQty { get; set; }
|
|
[SugarColumn(ColumnName = "FBASEUNIT")]
|
public string? FBaseUnit { get; set; }
|
|
[SugarColumn(ColumnName = "FSTOCKUNIT")]
|
public string? FStockUnit { get; set; }
|
|
[SugarColumn(ColumnName = "FSTOCKID")]
|
public string? FStockId { get; set; }
|
|
[SugarColumn(ColumnName = "CREATE_DATE")]
|
public DateTime? CreateDate { get; set; }
|
|
[SugarColumn(ColumnName = "FBATCHNO")]
|
public string? FBatchno { get; set; }
|
|
[SugarColumn(ColumnName = "FMTONO")]
|
public string? FMtono { get; set; }
|
|
[SugarColumn(ColumnName = "FSTOCKSTATUS")]
|
public string? FStockStatus { get; set; }
|
|
[SugarColumn(ColumnName = "FSTOREURNOM")]
|
public decimal? FStoreUrnom { get; set; }
|
|
[SugarColumn(ColumnName = "FSTOREURNUM")]
|
public decimal? FStoreUrnum { get; set; }
|
|
[SugarColumn(ColumnName = "FSTOCKORGID")]
|
public decimal? FStockOrgId { get; set; }
|
|
}
|