飞依诺接口
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.

90 lines
2.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.ERPWMS.Entity
{
public class CreateVendorEntity
{
//供应商编码
public string cVenCode { get; set; }
//供应商名称
public string cVenName { get; set; }
//供应商简称
public string cVenAbbName { get; set; }
//供应商分类编码
public string cVCCode { get; set; }
//纳税人登记号
public string cVenRegCode { get; set; }
//供应商总公司编码
public string cVenHeadCode { get; set; }
//税号
public float? fRegistFund { get; set; }
//币种名称
public string cVenExch_name { get; set; }
//单价是否含税
public bool? bVenTax { get; set; }
//税率%
public float iVenTaxRate { get; set; }
//采购/委外收付款协议编码
public string cVenPUOMProtocol { get; set; }
//发运方式编码
public string cVenIType { get; set; }
//地区编码
public string cDCCode { get; set; }
//停用日期
public DateTime? dStopDate { get; set; }
//建档人
public string cCreatePerson { get; set; }
//建档日期
public DateTime? dVenCreateDatetime { get; set; }
//站点
public string WorkPoint { get; set; }
public List<CreateVendorDetailEntity> list { get; set; }
}
public class CreateVendorDetailEntity
{
//供应商编码
public string cVenCode { get; set; }
//开户银行
public string cBranch { get; set; }
//所属银行
public string cBank { get; set; }
//银行账号
public string cAccountNum { get; set; }
//账号名称
public string cAccountName { get; set; }
//是否默认
public bool bDefault { get; set; }
//站点
public string WorkPoint { get; set; }
}
}