Supp.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class Supp
  7. {
  8. /** 供应商代码 */
  9. private string suppCode;
  10. public string SuppCode
  11. {
  12. get { return suppCode; }
  13. set { suppCode = value; }
  14. }
  15. /** 证书过期标志 */
  16. private string end;
  17. public string End
  18. {
  19. get { return end; }
  20. set { end = value; }
  21. }
  22. /** 供应商名称 */
  23. private string suppName;
  24. public string SuppName
  25. {
  26. get { return suppName; }
  27. set { suppName = value; }
  28. }
  29. /** 组织机构代码 */
  30. private string orgCode;
  31. public string OrgCode
  32. {
  33. get { return orgCode; }
  34. set { orgCode = value; }
  35. }
  36. /** 供应商中文简称 */
  37. private string suppShortName;
  38. public string SuppShortName
  39. {
  40. get { return suppShortName; }
  41. set { suppShortName = value; }
  42. }
  43. /** 供应商税号/标识 */
  44. private string suppTaxId;
  45. public string SuppTaxId
  46. {
  47. get { return suppTaxId; }
  48. set { suppTaxId = value; }
  49. }
  50. /** 供应商公司性质 */
  51. private string suppType;
  52. public string SuppType
  53. {
  54. get { return suppType; }
  55. set { suppType = value; }
  56. }
  57. /** 供应商公司性质 */
  58. private string suppCharacter;
  59. public string SuppCharacter
  60. {
  61. get { return suppCharacter; }
  62. set { suppCharacter = value; }
  63. }
  64. /** 供应商法人 */
  65. private string suppRegistrarName;
  66. public string SuppRegistrarName
  67. {
  68. get { return suppRegistrarName; }
  69. set { suppRegistrarName = value; }
  70. }
  71. /** 供应商国家 */
  72. private string suppNationality;
  73. public string SuppNationality
  74. {
  75. get { return suppNationality; }
  76. set { suppNationality = value; }
  77. }
  78. /** 供应商国家编码 */
  79. private string suppNationalityCode;
  80. public string SuppNationalityCode
  81. {
  82. get { return suppNationalityCode; }
  83. set { suppNationalityCode = value; }
  84. }
  85. /** 供应商省份 */
  86. private string suppProvince;
  87. public string SuppProvince
  88. {
  89. get { return suppProvince; }
  90. set { suppProvince = value; }
  91. }
  92. /** 供应商省份编码 */
  93. private string suppProvinceCode;
  94. public string SuppProvinceCode
  95. {
  96. get { return suppProvinceCode; }
  97. set { suppProvinceCode = value; }
  98. }
  99. /** 供应商城市 */
  100. private string suppCity;
  101. public string SuppCity
  102. {
  103. get { return suppCity; }
  104. set { suppCity = value; }
  105. }
  106. /** 供应商办公省份 */
  107. private string suppOfficeProvince;
  108. public string SuppOfficeProvince
  109. {
  110. get { return suppOfficeProvince; }
  111. set { suppOfficeProvince = value; }
  112. }
  113. /** 供应商办公省份编码 */
  114. private string suppOfficeProvinceCode;
  115. public string SuppOfficeProvinceCode
  116. {
  117. get { return suppOfficeProvinceCode; }
  118. set { suppOfficeProvinceCode = value; }
  119. }
  120. /** 供应商生效日期 */
  121. private string suppStartDate;
  122. public string SuppStartDate
  123. {
  124. get { return suppStartDate; }
  125. set { suppStartDate = value; }
  126. }
  127. /** 供应商失效日期 */
  128. private string suppEndDate;
  129. public string SuppEndDate
  130. {
  131. get { return suppEndDate; }
  132. set { suppEndDate = value; }
  133. }
  134. /** 供应商税号生效日期 */
  135. private string suppTaxStartDate;
  136. public string SuppTaxStartDate
  137. {
  138. get { return suppTaxStartDate; }
  139. set { suppTaxStartDate = value; }
  140. }
  141. /** 供应商税号失效日期 */
  142. private string suppTaxEndDate;
  143. public string SuppTaxEndDate
  144. {
  145. get { return suppTaxEndDate; }
  146. set { suppTaxEndDate = value; }
  147. }
  148. /** 供应商营业执照号码 */
  149. private string suppLicNum;
  150. public string SuppLicNum
  151. {
  152. get { return suppLicNum; }
  153. set { suppLicNum = value; }
  154. }
  155. /** 供应商营业执照生效日期 */
  156. private string suppLicStartDate;
  157. public string SuppLicStartDate
  158. {
  159. get { return suppLicStartDate; }
  160. set { suppLicStartDate = value; }
  161. }
  162. /** 供应商营业执照失效日期 */
  163. private string suppLicEndDate;
  164. public string SuppLicEndDate
  165. {
  166. get { return suppLicEndDate; }
  167. set { suppLicEndDate = value; }
  168. }
  169. /** 供应商经营范围 */
  170. private string suppOperateScope;
  171. public string SuppOperateScope
  172. {
  173. get { return suppOperateScope; }
  174. set { suppOperateScope = value; }
  175. }
  176. /** 是否内部供应商 */
  177. private string suppIsInternal;
  178. public string SuppIsInternal
  179. {
  180. get { return suppIsInternal; }
  181. set { suppIsInternal = value; }
  182. }
  183. /** 是否供应商 */
  184. private string suppIsSupplier;
  185. public string SuppIsSupplier
  186. {
  187. get { return suppIsSupplier; }
  188. set { suppIsSupplier = value; }
  189. }
  190. /** 是否检修供应商 */
  191. private string suppIsMaintenancer;
  192. public string SuppIsMaintenancer
  193. {
  194. get { return suppIsMaintenancer; }
  195. set { suppIsMaintenancer = value; }
  196. }
  197. /** 是否制造商 */
  198. private string suppIsManufacturer;
  199. public string SuppIsManufacturer
  200. {
  201. get { return suppIsManufacturer; }
  202. set { suppIsManufacturer = value; }
  203. }
  204. /** 是否子公司 */
  205. private string suppIsSubCompany;
  206. public string SuppIsSubCompany
  207. {
  208. get { return suppIsSubCompany; }
  209. set { suppIsSubCompany = value; }
  210. }
  211. /** 供应商行业类型 */
  212. private string suppIndustryType;
  213. public string SuppIndustryType
  214. {
  215. get { return suppIndustryType; }
  216. set { suppIndustryType = value; }
  217. }
  218. /** 供应商网址 */
  219. private string suppWebsite;
  220. public string SuppWebsite
  221. {
  222. get { return suppWebsite; }
  223. set { suppWebsite = value; }
  224. }
  225. /** 供应商注册资金 */
  226. private double? suppRegCapital;
  227. public double? SuppRegCapital
  228. {
  229. get { return suppRegCapital; }
  230. set { suppRegCapital = value; }
  231. }
  232. /** 供应商注册币种 */
  233. private string suppRegCapCurrency;
  234. public string SuppRegCapCurrency
  235. {
  236. get { return suppRegCapCurrency; }
  237. set { suppRegCapCurrency = value; }
  238. }
  239. /** 供应商评定等级 */
  240. private string suppPerGrade;
  241. public string SuppPerGrade
  242. {
  243. get { return suppPerGrade; }
  244. set { suppPerGrade = value; }
  245. }
  246. /** 供应商合作关系等级 */
  247. private string suppRelationGrade;
  248. public string SuppRelationGrade
  249. {
  250. get { return suppRelationGrade; }
  251. set { suppRelationGrade = value; }
  252. }
  253. /** 供应商地址 */
  254. private string suppAddress;
  255. public string SuppAddress
  256. {
  257. get { return suppAddress; }
  258. set { suppAddress = value; }
  259. }
  260. /** 供应商地址邮编 */
  261. private string suppAddPostal;
  262. public string SuppAddPostal
  263. {
  264. get { return suppAddPostal; }
  265. set { suppAddPostal = value; }
  266. }
  267. /** 供应商联系人名称 */
  268. private string supplierLinkMan;
  269. public string SupplierLinkMan
  270. {
  271. get { return supplierLinkMan; }
  272. set { supplierLinkMan = value; }
  273. }
  274. /** 供应商联系人传真 */
  275. private string suppContactFax;
  276. public string SuppContactFax
  277. {
  278. get { return suppContactFax; }
  279. set { suppContactFax = value; }
  280. }
  281. /** 供应商联系人电话 */
  282. private string suppContactTel;
  283. public string SuppContactTel
  284. {
  285. get { return suppContactTel; }
  286. set { suppContactTel = value; }
  287. }
  288. /** 供应商联系人EMAIL */
  289. private string suppContactEmail;
  290. public string SuppContactEmail
  291. {
  292. get { return suppContactEmail; }
  293. set { suppContactEmail = value; }
  294. }
  295. /** 供应商联系人手机 */
  296. private string suppContactCellPhone;
  297. public string SuppContactCellPhone
  298. {
  299. get { return suppContactCellPhone; }
  300. set { suppContactCellPhone = value; }
  301. }
  302. /** 供应商联系人职务 */
  303. private string suppContactTitle;
  304. public string SuppContactTitle
  305. {
  306. get { return suppContactTitle; }
  307. set { suppContactTitle = value; }
  308. }
  309. /** 供应商备注 */
  310. private string suppComment;
  311. public string SuppComment
  312. {
  313. get { return suppComment; }
  314. set { suppComment = value; }
  315. }
  316. /** 供应商信用等级 */
  317. private string suppCreditRate;
  318. public string SuppCreditRate
  319. {
  320. get { return suppCreditRate; }
  321. set { suppCreditRate = value; }
  322. }
  323. /** 管理部门代码 */
  324. private string mentDeptCode;
  325. public string MentDeptCode
  326. {
  327. get { return mentDeptCode; }
  328. set { mentDeptCode = value; }
  329. }
  330. /** 管理部门描叙 */
  331. private string mentDeptDesc;
  332. public string MentDeptDesc
  333. {
  334. get { return mentDeptDesc; }
  335. set { mentDeptDesc = value; }
  336. }
  337. /** 管理科室代码 */
  338. private string mentUnitCode;
  339. public string MentUnitCode
  340. {
  341. get { return mentUnitCode; }
  342. set { mentUnitCode = value; }
  343. }
  344. /** 管理科室描叙 */
  345. private string mentUnitDesc;
  346. public string MentUnitDesc
  347. {
  348. get { return mentUnitDesc; }
  349. set { mentUnitDesc = value; }
  350. }
  351. /** 采购管理部门代码 */
  352. private string buyerDeptCode;
  353. public string BuyerDeptCode
  354. {
  355. get { return buyerDeptCode; }
  356. set { buyerDeptCode = value; }
  357. }
  358. /** 采购管理部门描叙 */
  359. private string buyerDeptDesc;
  360. public string BuyerDeptDesc
  361. {
  362. get { return buyerDeptDesc; }
  363. set { buyerDeptDesc = value; }
  364. }
  365. /** 采购管理科室代码 */
  366. private string buyerUnitCode;
  367. public string BuyerUnitCode
  368. {
  369. get { return buyerUnitCode; }
  370. set { buyerUnitCode = value; }
  371. }
  372. /** 采购管理科室描叙 */
  373. private string buyerUnitDesc;
  374. public string BuyerUnitDesc
  375. {
  376. get { return buyerUnitDesc; }
  377. set { buyerUnitDesc = value; }
  378. }
  379. /** 状态(1:未生效 2:审批中 3:已审批 4:已生效) */
  380. private string status;
  381. public string Status
  382. {
  383. get { return status; }
  384. set { status = value; }
  385. }
  386. /** 数据状态(有效、无效) */
  387. private string validflag;
  388. public string Validflag
  389. {
  390. get { return validflag; }
  391. set { validflag = value; }
  392. }
  393. /** 创建人 */
  394. private string createName;
  395. public string CreateName
  396. {
  397. get { return createName; }
  398. set { createName = value; }
  399. }
  400. /** 创建时间 */
  401. private DateTime? createTime;
  402. public DateTime? CreateTime
  403. {
  404. get { return createTime; }
  405. set { createTime = value; }
  406. }
  407. /** 修改人 */
  408. private string updateName;
  409. public string UpdateName
  410. {
  411. get { return updateName; }
  412. set { updateName = value; }
  413. }
  414. /** 修改时间 */
  415. private DateTime? updateTime;
  416. public DateTime? UpdateTime
  417. {
  418. get { return updateTime; }
  419. set { updateTime = value; }
  420. }
  421. /** 废除人 */
  422. private string deleteName;
  423. public string DeleteName
  424. {
  425. get { return deleteName; }
  426. set { deleteName = value; }
  427. }
  428. /** 废除时间 */
  429. private DateTime? deleteTime;
  430. public DateTime? DeleteTime
  431. {
  432. get { return deleteTime; }
  433. set { deleteTime = value; }
  434. }
  435. /** 是否暂挂1:暂挂 0:正常
  436. */
  437. private string suspendStatus;
  438. public string SuspendStatus
  439. {
  440. get { return suspendStatus; }
  441. set { suspendStatus = value; }
  442. }
  443. /** 创建人ID */
  444. private string createUserid;
  445. public string CreateUserid
  446. {
  447. get { return createUserid; }
  448. set { createUserid = value; }
  449. }
  450. /** 修改人ID */
  451. private string updateUserid;
  452. public string UpdateUserid
  453. {
  454. get { return updateUserid; }
  455. set { updateUserid = value; }
  456. }
  457. /** 废除人ID */
  458. private string deleteUserid;
  459. public string DeleteUserid
  460. {
  461. get { return deleteUserid; }
  462. set { deleteUserid = value; }
  463. }
  464. /** 登录密码(供应商管理中心) */
  465. private string password;
  466. public string Password
  467. {
  468. get { return password; }
  469. set { password = value; }
  470. }
  471. /** 税率(默认13%) */
  472. private string suppTaxRate;
  473. public string SuppTaxRate
  474. {
  475. get { return suppTaxRate; }
  476. set { suppTaxRate = value; }
  477. }
  478. /**招标系统账号 */
  479. private string account;
  480. public string Account
  481. {
  482. get { return account; }
  483. set { account = value; }
  484. }
  485. /**财务系统账号 */
  486. private string accountCw;
  487. public string AccountCw
  488. {
  489. get { return accountCw; }
  490. set { accountCw = value; }
  491. }
  492. /**结算代码 */
  493. private string balanceCode;
  494. public string BalanceCode
  495. {
  496. get { return balanceCode; }
  497. set { balanceCode = value; }
  498. }
  499. }
  500. }