锐腾搅拌上料功能
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.

24 lines
655 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity.NcApiEntity
  6. {
  7. public class CreateForecastEntity
  8. {
  9. //开始时间
  10. public string cbegindate { get; set; }
  11. //结束时间
  12. public string cenddate { get; set; }
  13. //物料
  14. public string cmaterialid { get; set; }
  15. //年份
  16. public string periodyear { get; set; }
  17. //数量
  18. public string nnum { get; set; }
  19. public string periodcode { get; set; }
  20. public string pk_org { get; set; }
  21. public string vchangerate { get; set; }
  22. }
  23. }