You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace BPA.MES.Base.Application.Entitys
- {
- /// <summary>
- /// 名 称 :胖子天骄原料管理
- /// 创 建 人 :yangxiao
- /// 创建时间 : 2023/7/14 11:32:06
- /// 描 述 :
- /// </summary>
- [SugarTable("material_Info")]
- public class Pztj_MaterialsInfoEntity : DEntityBase
- {
- /// <summary>
- /// 原料名称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 原料编号
- /// </summary>
- public string Code { get; set; }
- /// <summary>
- /// 原料单位
- /// </summary>
- public string Unit { get; set; }
- /// <summary>
- /// 原料分组
- /// </summary>
- public string Type { get; set; }
- /// <summary>
- /// 每升重量
- /// </summary>
- [SugarColumn(IsNullable = true)]
- public string WeightPerLiter { get; set; }
- }
- }
|