using SqlSugar;
|
|
namespace MES.Service.Modes;
|
|
[SugarTable("ERP_MES_KC")]
|
public class ErpMesKc
|
{
|
[SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_ERP_KC", IsPrimaryKey = true)]
|
public decimal 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 = "FSTOCKNUMBER")]
|
public string? FStockNumber { 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 = "FOWNERID")]
|
public string? FOwnerId { get; set; }
|
[SugarColumn(ColumnName = "FSTOCKORGID")]
|
public string? FStockOrgId { get; set; }
|
|
|
}
|