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.

61 lines
1.4 KiB

4 days ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.SRM
  7. {
  8. public class CreatePUPriceJustByYLEntity
  9. {
  10. //制单人
  11. public string cmaker { get; set; }
  12. //业务员
  13. public string cpersoncode { get; set; }
  14. //备注
  15. public string cmainmemo { get; set; }
  16. //部门编码
  17. public string cdepcode { get; set; }
  18. //价格标识
  19. public int bTaxCost { get; set; }
  20. //供应类型
  21. public int iSupplyType { get; set; }
  22. //站点
  23. public string WorkPoint { get; set; }
  24. public List<CreatePUPriceJustByYDetailsEntity> list = new List<CreatePUPriceJustByYDetailsEntity>();
  25. }
  26. public class CreatePUPriceJustByYDetailsEntity
  27. {
  28. //供应商编码
  29. public string cvencode { get; set; }
  30. //存货编码
  31. public string cinvcode { get; set; }
  32. //计划开始日期
  33. public string dstartdate { get; set; }
  34. //数量下限
  35. public float fminquantity { get; set; }
  36. //无税单价
  37. public float iUnitPrice { get; set; }
  38. //税率
  39. public float iTaxRate { get; set; }
  40. //含税单价
  41. public float iTaxUnitPrice { get; set; }
  42. //币种
  43. public string cexch_name { get; set; }
  44. //行号
  45. public int ivouchrowno { get; set; }
  46. }
  47. }