mes_tech_proc_icitem.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using Business.Core.Attributes;
  2. using Business.Model;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Bussiness.Model.Tech
  6. {
  7. /// <summary>
  8. /// 发料到工序表
  9. /// </summary>
  10. [CollectionName("dopbase", "mes_tech_proc_icitem")]
  11. public class mes_tech_proc_icitem : BaseEntity
  12. {
  13. ///// <summary>
  14. ///// 主键
  15. ///// </summary>
  16. ////[Key]
  17. ////[Description("主键")]
  18. ////public long tech_proc_icitem_id { get; set; }
  19. /// <summary>
  20. /// 工艺工序id
  21. /// </summary>
  22. [Required]
  23. [Description("工艺工序id")]
  24. public long? tech_proc_id { get; set; }
  25. /// <summary>
  26. /// 物料id
  27. /// </summary>
  28. [Required]
  29. [Description("物料id")]
  30. public long? icitem_id { get; set; }
  31. /// <summary>
  32. /// 数量
  33. /// </summary>
  34. [Required]
  35. [Description("数量")]
  36. public int? qty { get; set; }
  37. }
  38. }