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.
65 lines
1.6 KiB
65 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.ERPWMS.Entity
|
|
{
|
|
public class CreateVendorInventoryPriceEntity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
//供应商编码
|
|
public string cVenCode { get; set; }
|
|
|
|
//物料编码
|
|
public string cInvCode { get; set; }
|
|
|
|
//计量单位编码
|
|
public string cComUnitCode { get; set; }
|
|
|
|
//价格标识 (0无税,1含税)
|
|
public int? bTaxCost { get; set; }
|
|
|
|
//供应类型(0委外, 1采购,2进口)
|
|
public int? iSupplyType { get; set; }
|
|
|
|
//币种
|
|
public string cExch_Name { get; set; }
|
|
|
|
//生效日期 格式为: 2020-01-01 00:00:00.000
|
|
public DateTime? dEnableDate { get; set; }
|
|
|
|
//失效日期 格式为: 2020-01-01 00:00:00.000
|
|
public DateTime? dDisableDate { get; set; }
|
|
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
|
|
public List<CreateVendorInventoryPriceDetailEntity> list { get; set; }
|
|
}
|
|
|
|
public class CreateVendorInventoryPriceDetailEntity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
//数量下限
|
|
public float? iLowerLimit { get; set; }
|
|
|
|
//数量上限
|
|
public float? iUpperLimit { get; set; }
|
|
|
|
//无税单价
|
|
public float? iUnitPrice { get; set; }
|
|
|
|
//税率
|
|
public float? iTaxRate { get; set; }
|
|
|
|
//含税单价
|
|
public float? iTaxUnitPrice { get; set; }
|
|
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
}
|
|
}
|