PlatformSpecificationComparison.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using Business.Domain;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.StructuredDB.WMS
  9. {
  10. /// <summary>
  11. /// 平台规格库存对照
  12. /// </summary>
  13. [Comment("平台规格库存对照")]
  14. public class PlatformSpecificationComparison : BaseEntity
  15. {
  16. /// <summary>
  17. /// 主键
  18. /// </summary>
  19. /// <param name="Id"></param>
  20. public PlatformSpecificationComparison(long Id) : base(Id)
  21. {
  22. }
  23. /// <summary>
  24. /// 标准规格型号
  25. /// </summary>
  26. [Comment("标准规格型号")]
  27. public string? StandardSpecifications { get; set; }
  28. /// <summary>
  29. /// 海王规格型号
  30. /// </summary>
  31. [Comment("海王规格型号")]
  32. public string? HWSpecificationModel { get; set; }
  33. /// <summary>
  34. /// 国科规格型号
  35. /// </summary>
  36. [Comment("国科规格型号")]
  37. public string? GKSpecificationModel { get; set; }
  38. /// <summary>
  39. /// 库存型号
  40. /// </summary>
  41. public string? Type { get; set; }
  42. }
  43. }