namespace RIZO.Model.Mes.MasterData
{
///
/// PLC通讯首位码
///
[SugarTable("plc_first_code")]
public class PlcFirstCode
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 产线编码
///
[SugarColumn(ColumnName = "line_code")]
public string LineCode { get; set; }
///
/// 灵敏度等级
///
public string Feature { get; set; }
///
/// PLC通讯首位编码
///
[SugarColumn(ColumnName = "plc_first_code")]
public string FirstCode { get; set; }
}
}