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
26 lines
576 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.ERPWMS.Entity
|
|
{
|
|
public class PurchasePlanParameterEntity
|
|
{
|
|
//物料编码
|
|
public string cInvCode { get; set; }
|
|
|
|
//最低供应量
|
|
public float? fMinSupply { get; set; }
|
|
|
|
//供应倍数
|
|
public float? fSupplyMulti { get; set; }
|
|
|
|
//固定提前期(天)
|
|
public float? iInvAdvance { get; set; }
|
|
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
}
|
|
}
|