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.

65 lines
1.6 KiB

11 months ago
10 months ago
11 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.ERPWMS.Entity
  7. {
  8. public class CreateVendorInventoryPriceEntity
  9. {
  10. public string ID { get; set; }
  11. //供应商编码
  12. public string cVenCode { get; set; }
  13. //物料编码
  14. public string cInvCode { get; set; }
  15. //计量单位编码
  16. public string cComUnitCode { get; set; }
  17. //价格标识 (0无税,1含税)
  18. public int? bTaxCost { get; set; }
  19. //供应类型(0委外, 1采购,2进口)
  20. public int? iSupplyType { get; set; }
  21. //币种
  22. public string cExch_Name { get; set; }
  23. //站点
  24. public string WorkPoint { get; set; }
  25. public List<CreateVendorInventoryPriceDetailEntity> list { get; set; }
  26. }
  27. public class CreateVendorInventoryPriceDetailEntity
  28. {
  29. public string ID { get; set; }
  30. //数量下限
  31. public float? iLowerLimit { get; set; }
  32. //数量上限
  33. public float? iUpperLimit { get; set; }
  34. //无税单价
  35. public float? iUnitPrice { get; set; }
  36. //税率
  37. public float? iTaxRate { get; set; }
  38. //含税单价
  39. public float? iTaxUnitPrice { get; set; }
  40. //站点
  41. public string WorkPoint { get; set; }
  42. //生效日期 格式为: 2020-01-01 00:00:00.000
  43. public DateTime? dEnableDate { get; set; }
  44. //失效日期 格式为: 2020-01-01 00:00:00.000
  45. public DateTime? dDisableDate { get; set; }
  46. }
  47. }