using SqlSugar;
|
|
namespace MES.Service.Modes
|
{
|
[SugarTable("DBCKB")]
|
public class Dbckb
|
{
|
[SugarColumn(IsPrimaryKey = true)]
|
public decimal? Id { get; set; }
|
public decimal? Pid { get; set; }
|
public string Itemid { get; set; }
|
public string Unit { get; set; }
|
public decimal? Quantity { get; set; }
|
public string DcOrg { get; set; }
|
public string DcDepot { get; set; }
|
public string DrOrg { get; set; }
|
public string DrDepot { get; set; }
|
public string DcHz { get; set; }
|
public string DrHz { get; set; }
|
public string Bz { get; set; }
|
public string Erpid { get; set; }
|
public string Eid { get; set; }
|
}
|
}
|