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

44 lines
1.3 KiB

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :胖子天骄设备基础表
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 : 2023/7/14 11:26:34
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("device_info")]
  10. public class Pztj_DevicesInfoEntity: DEntityBase
  11. {
  12. /// <summary>
  13. /// 名称
  14. /// </summary>
  15. [Required(ErrorMessage = "名称不能为空")]
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// 编码
  19. /// </summary>
  20. [Required(ErrorMessage = "编码不能为空")]
  21. public string Code { get; set; }
  22. /// <summary>
  23. /// 设备类型
  24. /// </summary>
  25. [SugarColumn(IsNullable = true)]
  26. public string DeviceType { get; set; }
  27. /// <summary>
  28. /// 设备描述
  29. /// </summary>
  30. [SugarColumn(IsNullable = true)]
  31. public string Describe { get; set; }
  32. /// <summary>
  33. /// 设备维保时间
  34. /// </summary>
  35. [SugarColumn(IsNullable = true)]
  36. public string RepairDate { get; set; }
  37. /// <summary>
  38. /// 设备创建时间
  39. /// </summary>
  40. [SugarColumn(IsNullable = true)]
  41. public string CreateTime { get; set; }
  42. }
  43. }