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.

26 lines
576 B

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 PurchasePlanParameterEntity
  9. {
  10. //物料编码
  11. public string cInvCode { get; set; }
  12. //最低供应量
  13. public float? fMinSupply { get; set; }
  14. //供应倍数
  15. public float? fSupplyMulti { get; set; }
  16. //固定提前期(天)
  17. public float? iInvAdvance { get; set; }
  18. //站点
  19. public string WorkPoint { get; set; }
  20. }
  21. }