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.
91 lines
2.1 KiB
91 lines
2.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.ERPWMS.Entity
|
|
{
|
|
public class UpdateVendorEntity
|
|
{
|
|
//供应商编码
|
|
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 string 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 cModifyPerson { get; set; }
|
|
|
|
//变更日期
|
|
public DateTime? dModifyDate { get; set; }
|
|
|
|
//发展日期
|
|
public DateTime? dVenDevDate { get; set; }
|
|
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
|
|
public List<UpdateVendorDetailEntity> list { get; set; }
|
|
}
|
|
|
|
public class UpdateVendorDetailEntity
|
|
{
|
|
//供应商编码
|
|
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; }
|
|
}
|
|
}
|