纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.4 KiB

3 years ago
  1. using System;
  2. namespace NFine.Domain.Entity.ProductManage
  3. {
  4. public class ICSProductEntity : IEntity<ICSProductEntity>, ICreationAudited, IDeleteAudited, IModificationAudited
  5. {
  6. public string F_Id { get; set; }
  7. public string ProductSN { get; set; }
  8. public string WhCode { get; set; }
  9. public decimal? Weight { get; set; }
  10. public decimal? GrossWeight { get; set; }
  11. public string Measurement { get; set; }
  12. public string Shape { get; set; }
  13. public string CertificateNo { get; set; }
  14. public decimal? Price { get; set; }
  15. public string Color { get; set; }
  16. public string Clarity { get; set; }
  17. public string Polish { get; set; }
  18. public string Symmetry { get; set; }
  19. public string Cut { get; set; }
  20. public string Other { get; set; }
  21. public decimal InvQty { get; set; }
  22. public string Location { get; set; }
  23. public bool? IsLock { get; set; }
  24. public string F_CreatorUserId { get; set; }
  25. public DateTime? F_CreatorTime { get; set; }
  26. public string F_LastModifyUserId { get; set; }
  27. public DateTime? F_LastModifyTime { get; set; }
  28. public bool? F_DeleteMark { get; set; }
  29. public string F_DeleteUserId { get; set; }
  30. public DateTime? F_DeleteTime { get; set; }
  31. public string EATTRIBUTE1 { get; set; }
  32. }
  33. }