飞依诺接口
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

2 years 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. //生效日期 格式为: 2020-01-01 00:00:00.000
  24. public DateTime? dEnableDate { get; set; }
  25. //失效日期 格式为: 2020-01-01 00:00:00.000
  26. public DateTime? dDisableDate { get; set; }
  27. //站点
  28. public string WorkPoint { get; set; }
  29. public List<CreateVendorInventoryPriceDetailEntity> list { get; set; }
  30. }
  31. public class CreateVendorInventoryPriceDetailEntity
  32. {
  33. public string ID { get; set; }
  34. //数量下限
  35. public float? iLowerLimit { get; set; }
  36. //数量上限
  37. public float? iUpperLimit { get; set; }
  38. //无税单价
  39. public float? iUnitPrice { get; set; }
  40. //税率
  41. public float? iTaxRate { get; set; }
  42. //含税单价
  43. public float? iTaxUnitPrice { get; set; }
  44. //站点
  45. public string WorkPoint { get; set; }
  46. }
  47. }