WMS_PlatformSpecificationComparison.cs 1.3 KB

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