| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class Supp
- {
- /** 供应商代码 */
- private string suppCode;
- public string SuppCode
- {
- get { return suppCode; }
- set { suppCode = value; }
- }
- /** 证书过期标志 */
- private string end;
- public string End
- {
- get { return end; }
- set { end = value; }
- }
-
- /** 供应商名称 */
- private string suppName;
- public string SuppName
- {
- get { return suppName; }
- set { suppName = value; }
- }
- /** 组织机构代码 */
- private string orgCode;
- public string OrgCode
- {
- get { return orgCode; }
- set { orgCode = value; }
- }
- /** 供应商中文简称 */
- private string suppShortName;
- public string SuppShortName
- {
- get { return suppShortName; }
- set { suppShortName = value; }
- }
- /** 供应商税号/标识 */
- private string suppTaxId;
- public string SuppTaxId
- {
- get { return suppTaxId; }
- set { suppTaxId = value; }
- }
- /** 供应商公司性质 */
- private string suppType;
- public string SuppType
- {
- get { return suppType; }
- set { suppType = value; }
- }
- /** 供应商公司性质 */
- private string suppCharacter;
- public string SuppCharacter
- {
- get { return suppCharacter; }
- set { suppCharacter = value; }
- }
- /** 供应商法人 */
- private string suppRegistrarName;
- public string SuppRegistrarName
- {
- get { return suppRegistrarName; }
- set { suppRegistrarName = value; }
- }
- /** 供应商国家 */
- private string suppNationality;
- public string SuppNationality
- {
- get { return suppNationality; }
- set { suppNationality = value; }
- }
- /** 供应商国家编码 */
- private string suppNationalityCode;
- public string SuppNationalityCode
- {
- get { return suppNationalityCode; }
- set { suppNationalityCode = value; }
- }
- /** 供应商省份 */
- private string suppProvince;
- public string SuppProvince
- {
- get { return suppProvince; }
- set { suppProvince = value; }
- }
- /** 供应商省份编码 */
- private string suppProvinceCode;
- public string SuppProvinceCode
- {
- get { return suppProvinceCode; }
- set { suppProvinceCode = value; }
- }
- /** 供应商城市 */
- private string suppCity;
- public string SuppCity
- {
- get { return suppCity; }
- set { suppCity = value; }
- }
- /** 供应商办公省份 */
- private string suppOfficeProvince;
- public string SuppOfficeProvince
- {
- get { return suppOfficeProvince; }
- set { suppOfficeProvince = value; }
- }
- /** 供应商办公省份编码 */
- private string suppOfficeProvinceCode;
- public string SuppOfficeProvinceCode
- {
- get { return suppOfficeProvinceCode; }
- set { suppOfficeProvinceCode = value; }
- }
- /** 供应商生效日期 */
- private string suppStartDate;
- public string SuppStartDate
- {
- get { return suppStartDate; }
- set { suppStartDate = value; }
- }
- /** 供应商失效日期 */
- private string suppEndDate;
- public string SuppEndDate
- {
- get { return suppEndDate; }
- set { suppEndDate = value; }
- }
- /** 供应商税号生效日期 */
- private string suppTaxStartDate;
- public string SuppTaxStartDate
- {
- get { return suppTaxStartDate; }
- set { suppTaxStartDate = value; }
- }
- /** 供应商税号失效日期 */
- private string suppTaxEndDate;
- public string SuppTaxEndDate
- {
- get { return suppTaxEndDate; }
- set { suppTaxEndDate = value; }
- }
- /** 供应商营业执照号码 */
- private string suppLicNum;
- public string SuppLicNum
- {
- get { return suppLicNum; }
- set { suppLicNum = value; }
- }
- /** 供应商营业执照生效日期 */
- private string suppLicStartDate;
- public string SuppLicStartDate
- {
- get { return suppLicStartDate; }
- set { suppLicStartDate = value; }
- }
- /** 供应商营业执照失效日期 */
- private string suppLicEndDate;
- public string SuppLicEndDate
- {
- get { return suppLicEndDate; }
- set { suppLicEndDate = value; }
- }
- /** 供应商经营范围 */
- private string suppOperateScope;
- public string SuppOperateScope
- {
- get { return suppOperateScope; }
- set { suppOperateScope = value; }
- }
- /** 是否内部供应商 */
- private string suppIsInternal;
- public string SuppIsInternal
- {
- get { return suppIsInternal; }
- set { suppIsInternal = value; }
- }
- /** 是否供应商 */
- private string suppIsSupplier;
- public string SuppIsSupplier
- {
- get { return suppIsSupplier; }
- set { suppIsSupplier = value; }
- }
- /** 是否检修供应商 */
- private string suppIsMaintenancer;
- public string SuppIsMaintenancer
- {
- get { return suppIsMaintenancer; }
- set { suppIsMaintenancer = value; }
- }
- /** 是否制造商 */
- private string suppIsManufacturer;
- public string SuppIsManufacturer
- {
- get { return suppIsManufacturer; }
- set { suppIsManufacturer = value; }
- }
- /** 是否子公司 */
- private string suppIsSubCompany;
- public string SuppIsSubCompany
- {
- get { return suppIsSubCompany; }
- set { suppIsSubCompany = value; }
- }
- /** 供应商行业类型 */
- private string suppIndustryType;
- public string SuppIndustryType
- {
- get { return suppIndustryType; }
- set { suppIndustryType = value; }
- }
- /** 供应商网址 */
- private string suppWebsite;
- public string SuppWebsite
- {
- get { return suppWebsite; }
- set { suppWebsite = value; }
- }
- /** 供应商注册资金 */
- private double? suppRegCapital;
- public double? SuppRegCapital
- {
- get { return suppRegCapital; }
- set { suppRegCapital = value; }
- }
- /** 供应商注册币种 */
- private string suppRegCapCurrency;
- public string SuppRegCapCurrency
- {
- get { return suppRegCapCurrency; }
- set { suppRegCapCurrency = value; }
- }
- /** 供应商评定等级 */
- private string suppPerGrade;
- public string SuppPerGrade
- {
- get { return suppPerGrade; }
- set { suppPerGrade = value; }
- }
- /** 供应商合作关系等级 */
- private string suppRelationGrade;
- public string SuppRelationGrade
- {
- get { return suppRelationGrade; }
- set { suppRelationGrade = value; }
- }
- /** 供应商地址 */
- private string suppAddress;
- public string SuppAddress
- {
- get { return suppAddress; }
- set { suppAddress = value; }
- }
- /** 供应商地址邮编 */
- private string suppAddPostal;
- public string SuppAddPostal
- {
- get { return suppAddPostal; }
- set { suppAddPostal = value; }
- }
- /** 供应商联系人名称 */
- private string supplierLinkMan;
- public string SupplierLinkMan
- {
- get { return supplierLinkMan; }
- set { supplierLinkMan = value; }
- }
- /** 供应商联系人传真 */
- private string suppContactFax;
- public string SuppContactFax
- {
- get { return suppContactFax; }
- set { suppContactFax = value; }
- }
- /** 供应商联系人电话 */
- private string suppContactTel;
- public string SuppContactTel
- {
- get { return suppContactTel; }
- set { suppContactTel = value; }
- }
- /** 供应商联系人EMAIL */
- private string suppContactEmail;
- public string SuppContactEmail
- {
- get { return suppContactEmail; }
- set { suppContactEmail = value; }
- }
- /** 供应商联系人手机 */
- private string suppContactCellPhone;
- public string SuppContactCellPhone
- {
- get { return suppContactCellPhone; }
- set { suppContactCellPhone = value; }
- }
- /** 供应商联系人职务 */
- private string suppContactTitle;
- public string SuppContactTitle
- {
- get { return suppContactTitle; }
- set { suppContactTitle = value; }
- }
- /** 供应商备注 */
- private string suppComment;
- public string SuppComment
- {
- get { return suppComment; }
- set { suppComment = value; }
- }
- /** 供应商信用等级 */
- private string suppCreditRate;
- public string SuppCreditRate
- {
- get { return suppCreditRate; }
- set { suppCreditRate = value; }
- }
- /** 管理部门代码 */
- private string mentDeptCode;
- public string MentDeptCode
- {
- get { return mentDeptCode; }
- set { mentDeptCode = value; }
- }
- /** 管理部门描叙 */
- private string mentDeptDesc;
- public string MentDeptDesc
- {
- get { return mentDeptDesc; }
- set { mentDeptDesc = value; }
- }
- /** 管理科室代码 */
- private string mentUnitCode;
- public string MentUnitCode
- {
- get { return mentUnitCode; }
- set { mentUnitCode = value; }
- }
- /** 管理科室描叙 */
- private string mentUnitDesc;
- public string MentUnitDesc
- {
- get { return mentUnitDesc; }
- set { mentUnitDesc = value; }
- }
- /** 采购管理部门代码 */
- private string buyerDeptCode;
- public string BuyerDeptCode
- {
- get { return buyerDeptCode; }
- set { buyerDeptCode = value; }
- }
- /** 采购管理部门描叙 */
- private string buyerDeptDesc;
- public string BuyerDeptDesc
- {
- get { return buyerDeptDesc; }
- set { buyerDeptDesc = value; }
- }
- /** 采购管理科室代码 */
- private string buyerUnitCode;
- public string BuyerUnitCode
- {
- get { return buyerUnitCode; }
- set { buyerUnitCode = value; }
- }
- /** 采购管理科室描叙 */
- private string buyerUnitDesc;
- public string BuyerUnitDesc
- {
- get { return buyerUnitDesc; }
- set { buyerUnitDesc = value; }
- }
- /** 状态(1:未生效 2:审批中 3:已审批 4:已生效) */
- private string status;
- public string Status
- {
- get { return status; }
- set { status = value; }
- }
- /** 数据状态(有效、无效) */
- private string validflag;
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /** 创建人 */
- private string createName;
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /** 创建时间 */
- private DateTime? createTime;
- public DateTime? CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /** 修改人 */
- private string updateName;
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /** 修改时间 */
- private DateTime? updateTime;
- public DateTime? UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /** 废除人 */
- private string deleteName;
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /** 废除时间 */
- private DateTime? deleteTime;
- public DateTime? DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /** 是否暂挂1:暂挂 0:正常
- */
- private string suspendStatus;
- public string SuspendStatus
- {
- get { return suspendStatus; }
- set { suspendStatus = value; }
- }
- /** 创建人ID */
- private string createUserid;
- public string CreateUserid
- {
- get { return createUserid; }
- set { createUserid = value; }
- }
- /** 修改人ID */
- private string updateUserid;
- public string UpdateUserid
- {
- get { return updateUserid; }
- set { updateUserid = value; }
- }
- /** 废除人ID */
- private string deleteUserid;
- public string DeleteUserid
- {
- get { return deleteUserid; }
- set { deleteUserid = value; }
- }
- /** 登录密码(供应商管理中心) */
- private string password;
- public string Password
- {
- get { return password; }
- set { password = value; }
- }
- /** 税率(默认13%) */
- private string suppTaxRate;
- public string SuppTaxRate
- {
- get { return suppTaxRate; }
- set { suppTaxRate = value; }
- }
- /**招标系统账号 */
- private string account;
- public string Account
- {
- get { return account; }
- set { account = value; }
- }
- /**财务系统账号 */
- private string accountCw;
- public string AccountCw
- {
- get { return accountCw; }
- set { accountCw = value; }
- }
- /**结算代码 */
- private string balanceCode;
- public string BalanceCode
- {
- get { return balanceCode; }
- set { balanceCode = value; }
- }
- }
- }
|