PlatformSpecificationComparison.cs 1.2 KB

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