mo_wms_shipplan.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using Business.Core.Attributes;
  2. using Bussiness.MongoModel;
  3. using Microsoft.EntityFrameworkCore;
  4. using System.ComponentModel;
  5. using System.ComponentModel.DataAnnotations;
  6. namespace Bussiness.MongoModel.Sale
  7. {
  8. /// <summary>
  9. /// 发货计划表
  10. /// </summary>
  11. [Comment("发货计划表")]
  12. [CollectionName("dopbase", "mo_wms_shipplan")]
  13. public class mo_wms_shipplan : MoBaseEntity
  14. {
  15. ///// <summary>
  16. ///// 发货计划表主键
  17. ///// </summary>
  18. //[Key]
  19. //[Comment("发货计划表主键")]
  20. //public long shipplan_id { get; set; }
  21. /// <summary>
  22. /// 发货计划编号
  23. /// </summary>
  24. [StringLength(80)]
  25. [Comment("发货计划编号")]
  26. public string? shipplan_no { get; set; }
  27. /// <summary>
  28. /// 发货计划时间
  29. /// </summary>
  30. [Comment("发货计划时间")]
  31. public DateTime? shipplan_date { get; set; }
  32. /// <summary>
  33. /// 状态
  34. /// </summary>
  35. [Comment("状态")]
  36. [StringLength(80)]
  37. public string? state { get; set; }
  38. }
  39. }