集成,总结MES功能
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.
 
 
 
 

35 lines
949 B

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :胖子天骄原料管理
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 : 2023/7/14 11:32:06
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("material_Info")]
  10. public class Pztj_MaterialsInfoEntity : DEntityBase
  11. {
  12. /// <summary>
  13. /// 原料名称
  14. /// </summary>
  15. public string Name { get; set; }
  16. /// <summary>
  17. /// 原料编号
  18. /// </summary>
  19. public string Code { get; set; }
  20. /// <summary>
  21. /// 原料单位
  22. /// </summary>
  23. public string Unit { get; set; }
  24. /// <summary>
  25. /// 原料分组
  26. /// </summary>
  27. public string Type { get; set; }
  28. /// <summary>
  29. /// 每升重量
  30. /// </summary>
  31. [SugarColumn(IsNullable = true)]
  32. public string WeightPerLiter { get; set; }
  33. }
  34. }