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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Frame.Data.Entity.NcApiEntity
{
public class CreateForecastEntity
{
//开始时间
public string cbegindate { get; set; }
//结束时间
public string cenddate { get; set; }
//物料
public string cmaterialid { get; set; }
//年份
public string periodyear { get; set; }
//数量
public string nnum { get; set; }
public string periodcode { get; set; }
public string pk_org { get; set; }
public string vchangerate { get; set; }
}
}