// 文件: MES.Service.Modes/ZZCX.cs
using SqlSugar;
namespace MES.Service.Modes
{
///
/// ZZCX - 组装拆卸 主表
///
[SugarTable("ZZCX")]
public class ZZCX
{
///
/// 主键 ID(Oracle 序列)
///
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_ZZCX")]
public decimal? Id { get; set; }
///
/// ERP 主表 ID
///
[SugarColumn(ColumnName = "ERPID")]
public decimal? Erpid { get; set; }
///
/// 单据编码
///
[SugarColumn(ColumnName = "BILL_NO")]
public string BillNo { get; set; }
///
/// 类型
///
[SugarColumn(ColumnName = "TYPE")]
public string Type { get; set; }
///
/// 单据类型
///
[SugarColumn(ColumnName = "DJ_LX")]
public string DjLx { get; set; }
///
/// 库存组织
///
[SugarColumn(ColumnName = "KC_ZZ")]
public string KcZz { get; set; }
///
/// 事务类型
///
[SugarColumn(ColumnName = "SW_LX")]
public string SwLx { get; set; }
///
/// 日期
///
[SugarColumn(ColumnName = "TIME")]
public string Time { get; set; }
///
/// 部门
///
[SugarColumn(ColumnName = "BM")]
public string Bm { get; set; }
///
/// 仓管员
///
[SugarColumn(ColumnName = "CGY")]
public string Cgy { get; set; }
///
/// 库存组
///
[SugarColumn(ColumnName = "KCZ")]
public string Kcz { get; set; }
///
/// 单据状态
///
[SugarColumn(ColumnName = "DJ_ZT")]
public string DjZt { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "MEMO")]
public string Memo { get; set; }
///
/// 成品货主类型
///
[SugarColumn(ColumnName = "CPHZLX")]
public string Cphzlx { get; set; }
///
/// 成品货主
///
[SugarColumn(ColumnName = "CPHZ")]
public string Cphz { get; set; }
///
/// 子件货主类型
///
[SugarColumn(ColumnName = "ZJHZLX")]
public string Zjhzlx { get; set; }
///
/// 子件货主
///
[SugarColumn(ColumnName = "ZJHZ")]
public string Zjhz { get; set; }
}
}