using SqlSugar;
namespace MES.Service.Modes;
///
/// 物料单位换算信息
///
[SugarTable("MES_ITEM_UNIT_MATRIXING")]
public class MesItemUnitMatrixing
{
///
/// ID(SEQ_INV_ID)
///
[SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_CX")]
public decimal Id { get; set; }
///
/// 物料编号(品号)
///
[SugarColumn(ColumnName = "ITEM_NO", IsPrimaryKey = true)]
public string ItemNo { get; set; }
///
/// 换算分子
///
[SugarColumn(ColumnName = "CONVMOL")]
public decimal? Convmol { get; set; }
///
/// 换算分母
///
[SugarColumn(ColumnName = "CONVDEN")]
public decimal? Convden { get; set; }
///
/// 换算单位
///
[SugarColumn(ColumnName = "ALT_UNITS")]
public string? Altunits { get; set; }
///
/// 有效码
///
[SugarColumn(ColumnName = "VAL_STATES")]
public string? Valstates { get; set; }
///
/// 分厂编码
///
[SugarColumn(ColumnName = "FACTORY")]
public string? Factory { get; set; }
///
/// 公司代码
///
[SugarColumn(ColumnName = "COMPANY")]
public string? Company { get; set; }
[SugarColumn(IsIgnore = true)] public string? Type { get; set; }
}