b_order_examine_result.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using Business.Core.Attributes;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Business.Domain
  6. {
  7. /// <summary>
  8. /// 工单齐套检查
  9. /// </summary>
  10. [CollectionName("dopbase", "b_order_examine_result")]
  11. [Comment("工单齐套检查")]
  12. public class b_order_examine_result : BaseEntity
  13. {
  14. /// <summary>
  15. /// 工单id
  16. /// </summary>
  17. [Comment("工单id")]
  18. public long? orderid { get; set; }
  19. /// <summary>
  20. /// 生产工单编号
  21. /// </summary>
  22. [StringLength(50)]
  23. [Comment("生产工单编号")]
  24. public string order_no { get; set; }
  25. /// <summary>
  26. /// 类别:1-工单齐套检查;2-替代料齐套检查
  27. /// </summary>
  28. [Comment("类别")]
  29. public int? type { get; set; }
  30. /// <summary>
  31. /// 开工日期
  32. /// </summary>
  33. [Comment("开工日期")]
  34. public DateTime? time { get; set; }
  35. /// <summary>
  36. /// 齐套日期
  37. /// </summary>
  38. [Comment("齐套日期")]
  39. public DateTime? ketting_time { get; set; }
  40. /// <summary>
  41. /// BOM编码
  42. /// </summary>
  43. [Comment("BOM编码")]
  44. public string bom_number { get; set; }
  45. /// <summary>
  46. /// 需要数量
  47. /// </summary>
  48. [Comment("需要数量")]
  49. [Precision(23, 10)]
  50. public decimal? need_qty { get; set; }
  51. }
  52. }