using System;
using SqlSugar;
namespace MES.Service.Modes
{
///
/// ZZCXB 明细表
///
[SugarTable("ZZCXB")]
public class Zzcxb
{
///
/// 主键ID
///
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_ZZCXB")]
public decimal? Id { get; set; }
///
/// 主表ID
///
[SugarColumn(ColumnName = "PID")]
public decimal? Pid { get; set; }
///
/// ERP 主表id
///
[SugarColumn(ColumnName = "ERPID")]
public string Erpid { get; set; }
///
/// ERP 单据头id
///
[SugarColumn(ColumnName = "EID")]
public string Eid { get; set; }
///
/// 物料编码id
///
[SugarColumn(ColumnName = "ITEM_ID")]
public decimal? ItemId { get; set; }
///
/// 数量
///
[SugarColumn(ColumnName = "QTY")]
public decimal? Qty { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "UNIT")]
public string Unit { get; set; }
///
/// 仓库
///
[SugarColumn(ColumnName = "DEPOT_ID")]
public string DepotId { get; set; }
///
/// 批号
///
[SugarColumn(ColumnName = "LOT_NO")]
public string LotNo { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "MEMO")]
public string Memo { get; set; }
}
}