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.
55 lines
2.2 KiB
55 lines
2.2 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 ICSVendors
|
|
{
|
|
public string cVenCode { get; set; }
|
|
public string cVenName { get; set; }
|
|
public string cVenAbbName { get; set; }
|
|
public string cVCCode { get; set; }
|
|
public string cVCName { get; set; }
|
|
public string cVenAddress { get; set; }
|
|
public string cVenRegCode { get; set; }
|
|
public string cVenBank { get; set; }
|
|
public string cVenAccount { get; set; }
|
|
public DateTime dVenDevDate { get; set; }
|
|
public string cVenLPerson { get; set; }
|
|
public string cVenPhone { get; set; }
|
|
public string cVenEmail { get; set; }
|
|
public string cVenPerson { get; set; }
|
|
public string cVenHand { get; set; }
|
|
public string iVenDisRate { get; set; }
|
|
public string iVenCreLine { get; set; }
|
|
public string iVenCreDate { get; set; }
|
|
public string cVenPayCond { get; set; }
|
|
public string cPayName { get; set; }
|
|
public string cVenExch_name { get; set; }
|
|
public string Free1 { get; set; }
|
|
public string Free2 { get; set; }
|
|
public string Free3 { get; set; }
|
|
public string Free4 { get; set; }
|
|
public string Free5 { get; set; }
|
|
public string EarnestMoney { get; set; }
|
|
public string cVenStart { get; set; }
|
|
public DateTime cVenStartTime { get; set; }
|
|
public DateTime cVenStartEnd { get; set; }
|
|
public string cVenType { get; set; }
|
|
public string iTaxRateNum { get; set; }
|
|
public string cVenHeadCode { get; set; }
|
|
public string cVenSource { get; set; }
|
|
public string cVenPerson2 { get; set; }
|
|
public string cVenSSCode { get; set; }
|
|
public string cVenBankCode { get; set; }
|
|
public string cVenPostCode { get; set; }
|
|
public float iVenTaxRate { get; set; }
|
|
public bool bVenCargo { get; set; }
|
|
public bool bProxyForeign { get; set; }
|
|
public bool bVenService { get; set; }
|
|
public bool bVenOverseas { get; set; }
|
|
}
|
|
}
|