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.
 
 
 
 

61 lines
1.4 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Domain._03_Entity.SRM
{
public class CreatePUPriceJustByYLEntity
{
//制单人
public string cmaker { get; set; }
//业务员
public string cpersoncode { get; set; }
//备注
public string cmainmemo { get; set; }
//部门编码
public string cdepcode { get; set; }
//价格标识
public int bTaxCost { get; set; }
//供应类型
public int iSupplyType { get; set; }
//站点
public string WorkPoint { get; set; }
public List<CreatePUPriceJustByYDetailsEntity> list = new List<CreatePUPriceJustByYDetailsEntity>();
}
public class CreatePUPriceJustByYDetailsEntity
{
//供应商编码
public string cvencode { get; set; }
//存货编码
public string cinvcode { get; set; }
//计划开始日期
public string dstartdate { get; set; }
//数量下限
public float fminquantity { get; set; }
//无税单价
public float iUnitPrice { get; set; }
//税率
public float iTaxRate { get; set; }
//含税单价
public float iTaxUnitPrice { get; set; }
//币种
public string cexch_name { get; set; }
//行号
public int ivouchrowno { get; set; }
}
}