ComBaseSuppEntity.cs 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.ComponentModel;
  5. namespace Core.StlMes.Client.Qcm.model
  6. {
  7. /// <summary>
  8. /// 数据库表COM_BASE_SUPP所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  9. /// 作者:tgcx-test 时间:2016-08-16
  10. /// </summary>
  11. public class ComBaseSuppEntity
  12. {
  13. /// <summary>
  14. /// 供应商代码
  15. /// </summary>
  16. private string suppCode = "";
  17. /// <summary>
  18. /// 供应商名称
  19. /// </summary>
  20. private string suppName = "";
  21. /// <summary>
  22. /// 组织机构代码
  23. /// </summary>
  24. private string orgCode = "";
  25. /// <summary>
  26. /// 供应商中文简称
  27. /// </summary>
  28. private string suppShortName = "";
  29. /// <summary>
  30. /// 供应商税号/标识
  31. /// </summary>
  32. private string suppTaxId = "";
  33. /// <summary>
  34. /// 供应商公司性质
  35. /// </summary>
  36. private string suppCharacter = "";
  37. /// <summary>
  38. /// 供应商法人
  39. /// </summary>
  40. private string suppRegistrarName = "";
  41. /// <summary>
  42. /// 供应商国家
  43. /// </summary>
  44. private string suppNationality = "";
  45. /// <summary>
  46. /// 供应商省份
  47. /// </summary>
  48. private string suppProvince = "";
  49. /// <summary>
  50. /// 供应商城市
  51. /// </summary>
  52. private string suppCity = "";
  53. /// <summary>
  54. /// 供应商办公省份
  55. /// </summary>
  56. private string suppOfficeProvince = "";
  57. /// <summary>
  58. /// 供应商生效日期
  59. /// </summary>
  60. private string suppStartDate = "";
  61. /// <summary>
  62. /// 供应商失效日期
  63. /// </summary>
  64. private string suppEndDate = "";
  65. /// <summary>
  66. /// 供应商税号生效日期
  67. /// </summary>
  68. private string suppTaxStartDate = "";
  69. /// <summary>
  70. /// 供应商税号失效日期
  71. /// </summary>
  72. private string suppTaxEndDate = "";
  73. /// <summary>
  74. /// 供应商营业执照号码
  75. /// </summary>
  76. private string suppLicNum = "";
  77. /// <summary>
  78. /// 供应商营业执照生效日期
  79. /// </summary>
  80. private string suppLicStartDate = "";
  81. /// <summary>
  82. /// 供应商营业执照失效日期
  83. /// </summary>
  84. private string suppLicEndDate = "";
  85. /// <summary>
  86. /// 供应商经营范围
  87. /// </summary>
  88. private string suppOperateScope = "";
  89. /// <summary>
  90. /// 是否内部供应商
  91. /// </summary>
  92. private string suppIsInternal = "";
  93. /// <summary>
  94. /// 是否供应商
  95. /// </summary>
  96. private string suppIsSupplier = "";
  97. /// <summary>
  98. /// 是否检修供应商
  99. /// </summary>
  100. private string suppIsMaintenancer = "";
  101. /// <summary>
  102. /// 是否制造商
  103. /// </summary>
  104. private string suppIsManufacturer = "";
  105. /// <summary>
  106. /// 是否子公司
  107. /// </summary>
  108. private string suppIsSubCompany = "";
  109. /// <summary>
  110. /// 供应商行业类型
  111. /// </summary>
  112. private string suppIndustryType = "";
  113. /// <summary>
  114. /// 供应商网址
  115. /// </summary>
  116. private string suppWebsite = "";
  117. /// <summary>
  118. /// 供应商注册资金
  119. /// </summary>
  120. private decimal? suppRegCapital = null;
  121. /// <summary>
  122. /// 供应商注册币种
  123. /// </summary>
  124. private string suppRegCapCurrency = "";
  125. /// <summary>
  126. /// 供应商评定等级
  127. /// </summary>
  128. private string suppPerGrade = "";
  129. /// <summary>
  130. /// 供应商合作关系等级
  131. /// </summary>
  132. private string suppRelationGrade = "";
  133. /// <summary>
  134. /// 供应商地址
  135. /// </summary>
  136. private string suppAddress = "";
  137. /// <summary>
  138. /// 供应商地址邮编
  139. /// </summary>
  140. private string suppAddPostal = "";
  141. /// <summary>
  142. /// 供应商联系人名称
  143. /// </summary>
  144. private string supplierLinkMan = "";
  145. /// <summary>
  146. /// 供应商联系人传真
  147. /// </summary>
  148. private string suppContactFax = "";
  149. /// <summary>
  150. /// 供应商联系人电话
  151. /// </summary>
  152. private string suppContactTel = "";
  153. /// <summary>
  154. /// 供应商联系人EMAIL
  155. /// </summary>
  156. private string suppContactEmail = "";
  157. /// <summary>
  158. /// 供应商联系人手机
  159. /// </summary>
  160. private string suppContactCellPhone = "";
  161. /// <summary>
  162. /// 供应商联系人职务
  163. /// </summary>
  164. private string suppContactTitle = "";
  165. /// <summary>
  166. /// 供应商备注
  167. /// </summary>
  168. private string suppComment = "";
  169. /// <summary>
  170. /// 供应商信用等级
  171. /// </summary>
  172. private string suppCreditRate = "";
  173. /// <summary>
  174. /// 管理部门代码
  175. /// </summary>
  176. private string mentDeptCode = "";
  177. /// <summary>
  178. /// 管理部门描叙
  179. /// </summary>
  180. private string mentDeptDesc = "";
  181. /// <summary>
  182. /// 管理科室代码
  183. /// </summary>
  184. private string mentUnitCode = "";
  185. /// <summary>
  186. /// 管理科室描叙
  187. /// </summary>
  188. private string mentUnitDesc = "";
  189. /// <summary>
  190. /// 采购管理部门代码
  191. /// </summary>
  192. private string buyerDeptCode = "";
  193. /// <summary>
  194. /// 采购管理部门描叙
  195. /// </summary>
  196. private string buyerDeptDesc = "";
  197. /// <summary>
  198. /// 采购管理科室代码
  199. /// </summary>
  200. private string buyerUnitCode = "";
  201. /// <summary>
  202. /// 采购管理科室描叙
  203. /// </summary>
  204. private string buyerUnitDesc = "";
  205. /// <summary>
  206. /// 状态(1:未生效 2:审批中 3:已审批 4:已生效)
  207. /// </summary>
  208. private string status = "";
  209. /// <summary>
  210. /// 数据状态(有效、无效)
  211. /// </summary>
  212. private string validflag = "";
  213. /// <summary>
  214. /// 创建人
  215. /// </summary>
  216. private string createName = "";
  217. /// <summary>
  218. /// 创建时间
  219. /// </summary>
  220. private string createTime = "";
  221. /// <summary>
  222. /// 修改人
  223. /// </summary>
  224. private string updateName = "";
  225. /// <summary>
  226. /// 修改时间
  227. /// </summary>
  228. private string updateTime = "";
  229. /// <summary>
  230. /// 废除人
  231. /// </summary>
  232. private string deleteName = "";
  233. /// <summary>
  234. /// 废除时间
  235. /// </summary>
  236. private string deleteTime = "";
  237. /// <summary>
  238. /// "是否暂挂1:暂挂 0:正常
  239. /// </summary>
  240. private string suspendStatus = "";
  241. /// <summary>
  242. /// 创建人ID
  243. /// </summary>
  244. private string createUserid = "";
  245. /// <summary>
  246. /// 修改人ID
  247. /// </summary>
  248. private string updateUserid = "";
  249. /// <summary>
  250. /// 废除人ID
  251. /// </summary>
  252. private string deleteUserid = "";
  253. /// <summary>
  254. /// 登录密码(供应商管理中心)
  255. /// </summary>
  256. private string password = "";
  257. /// <summary>
  258. /// 税率(%)(默认17%)
  259. /// </summary>
  260. private string suppTaxRate = "";
  261. /// <summary>
  262. /// 供应商国家编码
  263. /// </summary>
  264. private string suppNationalityCode = "";
  265. /// <summary>
  266. /// 供应商省份编码
  267. /// </summary>
  268. private string suppProvinceCode = "";
  269. /// <summary>
  270. /// 供应商办公省份编码
  271. /// </summary>
  272. private string suppOfficeProvinceCode = "";
  273. private String suppType = "";
  274. /// <summary>
  275. /// 供应商代码
  276. /// </summary>
  277. [Description("供应商代码")]
  278. [Nullable(false)]
  279. [DataLength(64)]
  280. [JsonProperty("suppCode")]
  281. public string SuppCode
  282. {
  283. get { return suppCode; }
  284. set { suppCode = value; }
  285. }
  286. /// <summary>
  287. /// 供应商名称
  288. /// </summary>
  289. [Description("供应商名称")]
  290. [Nullable(false)]
  291. [DataLength(256)]
  292. [JsonProperty("suppName")]
  293. public string SuppName
  294. {
  295. get { return suppName; }
  296. set { suppName = value; }
  297. }
  298. /// <summary>
  299. /// 组织机构代码
  300. /// </summary>
  301. [Description("组织机构代码")]
  302. [Nullable(true)]
  303. [DataLength(256)]
  304. [JsonProperty("orgCode")]
  305. public string OrgCode
  306. {
  307. get { return orgCode; }
  308. set { orgCode = value; }
  309. }
  310. /// <summary>
  311. /// 供应商中文简称
  312. /// </summary>
  313. [Description("供应商中文简称")]
  314. [Nullable(true)]
  315. [DataLength(256)]
  316. [JsonProperty("suppShortName")]
  317. public string SuppShortName
  318. {
  319. get { return suppShortName; }
  320. set { suppShortName = value; }
  321. }
  322. /// <summary>
  323. /// 供应商税号/标识
  324. /// </summary>
  325. [Description("供应商税号/标识")]
  326. [Nullable(true)]
  327. [DataLength(256)]
  328. [JsonProperty("suppTaxId")]
  329. public string SuppTaxId
  330. {
  331. get { return suppTaxId; }
  332. set { suppTaxId = value; }
  333. }
  334. /// <summary>
  335. /// 供应商公司性质
  336. /// </summary>
  337. [Description("供应商公司性质")]
  338. [Nullable(true)]
  339. [DataLength(64)]
  340. [JsonProperty("suppCharacter")]
  341. public string SuppCharacter
  342. {
  343. get { return suppCharacter; }
  344. set { suppCharacter = value; }
  345. }
  346. /// <summary>
  347. /// 供应商法人
  348. /// </summary>
  349. [Description("供应商法人")]
  350. [Nullable(true)]
  351. [DataLength(64)]
  352. [JsonProperty("suppRegistrarName")]
  353. public string SuppRegistrarName
  354. {
  355. get { return suppRegistrarName; }
  356. set { suppRegistrarName = value; }
  357. }
  358. /// <summary>
  359. /// 供应商国家
  360. /// </summary>
  361. [Description("供应商国家")]
  362. [Nullable(true)]
  363. [DataLength(256)]
  364. [JsonProperty("suppNationality")]
  365. public string SuppNationality
  366. {
  367. get { return suppNationality; }
  368. set { suppNationality = value; }
  369. }
  370. /// <summary>
  371. /// 供应商省份
  372. /// </summary>
  373. [Description("供应商省份")]
  374. [Nullable(true)]
  375. [DataLength(256)]
  376. [JsonProperty("suppProvince")]
  377. public string SuppProvince
  378. {
  379. get { return suppProvince; }
  380. set { suppProvince = value; }
  381. }
  382. /// <summary>
  383. /// 供应商城市
  384. /// </summary>
  385. [Description("供应商城市")]
  386. [Nullable(true)]
  387. [DataLength(256)]
  388. [JsonProperty("suppCity")]
  389. public string SuppCity
  390. {
  391. get { return suppCity; }
  392. set { suppCity = value; }
  393. }
  394. /// <summary>
  395. /// 供应商办公省份
  396. /// </summary>
  397. [Description("供应商办公省份")]
  398. [Nullable(true)]
  399. [DataLength(256)]
  400. [JsonProperty("suppOfficeProvince")]
  401. public string SuppOfficeProvince
  402. {
  403. get { return suppOfficeProvince; }
  404. set { suppOfficeProvince = value; }
  405. }
  406. /// <summary>
  407. /// 供应商生效日期
  408. /// </summary>
  409. [Description("供应商生效日期")]
  410. [Nullable(true)]
  411. [DataLength(14)]
  412. [JsonProperty("suppStartDate")]
  413. public string SuppStartDate
  414. {
  415. get { return suppStartDate; }
  416. set { suppStartDate = value; }
  417. }
  418. /// <summary>
  419. /// 供应商失效日期
  420. /// </summary>
  421. [Description("供应商失效日期")]
  422. [Nullable(true)]
  423. [DataLength(14)]
  424. [JsonProperty("suppEndDate")]
  425. public string SuppEndDate
  426. {
  427. get { return suppEndDate; }
  428. set { suppEndDate = value; }
  429. }
  430. /// <summary>
  431. /// 供应商税号生效日期
  432. /// </summary>
  433. [Description("供应商税号生效日期")]
  434. [Nullable(true)]
  435. [DataLength(14)]
  436. [JsonProperty("suppTaxStartDate")]
  437. public string SuppTaxStartDate
  438. {
  439. get { return suppTaxStartDate; }
  440. set { suppTaxStartDate = value; }
  441. }
  442. /// <summary>
  443. /// 供应商税号失效日期
  444. /// </summary>
  445. [Description("供应商税号失效日期")]
  446. [Nullable(true)]
  447. [DataLength(14)]
  448. [JsonProperty("suppTaxEndDate")]
  449. public string SuppTaxEndDate
  450. {
  451. get { return suppTaxEndDate; }
  452. set { suppTaxEndDate = value; }
  453. }
  454. /// <summary>
  455. /// 供应商营业执照号码
  456. /// </summary>
  457. [Description("供应商营业执照号码")]
  458. [Nullable(true)]
  459. [DataLength(256)]
  460. [JsonProperty("suppLicNum")]
  461. public string SuppLicNum
  462. {
  463. get { return suppLicNum; }
  464. set { suppLicNum = value; }
  465. }
  466. /// <summary>
  467. /// 供应商营业执照生效日期
  468. /// </summary>
  469. [Description("供应商营业执照生效日期")]
  470. [Nullable(true)]
  471. [DataLength(14)]
  472. [JsonProperty("suppLicStartDate")]
  473. public string SuppLicStartDate
  474. {
  475. get { return suppLicStartDate; }
  476. set { suppLicStartDate = value; }
  477. }
  478. /// <summary>
  479. /// 供应商营业执照失效日期
  480. /// </summary>
  481. [Description("供应商营业执照失效日期")]
  482. [Nullable(true)]
  483. [DataLength(14)]
  484. [JsonProperty("suppLicEndDate")]
  485. public string SuppLicEndDate
  486. {
  487. get { return suppLicEndDate; }
  488. set { suppLicEndDate = value; }
  489. }
  490. /// <summary>
  491. /// 供应商经营范围
  492. /// </summary>
  493. [Description("供应商经营范围")]
  494. [Nullable(true)]
  495. [DataLength(1024)]
  496. [JsonProperty("suppOperateScope")]
  497. public string SuppOperateScope
  498. {
  499. get { return suppOperateScope; }
  500. set { suppOperateScope = value; }
  501. }
  502. /// <summary>
  503. /// 是否内部供应商
  504. /// </summary>
  505. [Description("是否内部供应商")]
  506. [Nullable(true)]
  507. [DataLength(1)]
  508. [JsonProperty("suppIsInternal")]
  509. public string SuppIsInternal
  510. {
  511. get { return suppIsInternal; }
  512. set { suppIsInternal = value; }
  513. }
  514. /// <summary>
  515. /// 是否供应商
  516. /// </summary>
  517. [Description("是否供应商")]
  518. [Nullable(true)]
  519. [DataLength(1)]
  520. [JsonProperty("suppIsSupplier")]
  521. public string SuppIsSupplier
  522. {
  523. get { return suppIsSupplier; }
  524. set { suppIsSupplier = value; }
  525. }
  526. /// <summary>
  527. /// 是否检修供应商
  528. /// </summary>
  529. [Description("是否检修供应商")]
  530. [Nullable(true)]
  531. [DataLength(1)]
  532. [JsonProperty("suppIsMaintenancer")]
  533. public string SuppIsMaintenancer
  534. {
  535. get { return suppIsMaintenancer; }
  536. set { suppIsMaintenancer = value; }
  537. }
  538. /// <summary>
  539. /// 是否制造商
  540. /// </summary>
  541. [Description("是否制造商")]
  542. [Nullable(true)]
  543. [DataLength(1)]
  544. [JsonProperty("suppIsManufacturer")]
  545. public string SuppIsManufacturer
  546. {
  547. get { return suppIsManufacturer; }
  548. set { suppIsManufacturer = value; }
  549. }
  550. /// <summary>
  551. /// 是否子公司
  552. /// </summary>
  553. [Description("是否子公司")]
  554. [Nullable(true)]
  555. [DataLength(1)]
  556. [JsonProperty("suppIsSubCompany")]
  557. public string SuppIsSubCompany
  558. {
  559. get { return suppIsSubCompany; }
  560. set { suppIsSubCompany = value; }
  561. }
  562. /// <summary>
  563. /// 供应商行业类型
  564. /// </summary>
  565. [Description("供应商行业类型")]
  566. [Nullable(true)]
  567. [DataLength(256)]
  568. [JsonProperty("suppIndustryType")]
  569. public string SuppIndustryType
  570. {
  571. get { return suppIndustryType; }
  572. set { suppIndustryType = value; }
  573. }
  574. /// <summary>
  575. /// 供应商网址
  576. /// </summary>
  577. [Description("供应商网址")]
  578. [Nullable(true)]
  579. [DataLength(256)]
  580. [JsonProperty("suppWebsite")]
  581. public string SuppWebsite
  582. {
  583. get { return suppWebsite; }
  584. set { suppWebsite = value; }
  585. }
  586. /// <summary>
  587. /// 供应商注册资金
  588. /// </summary>
  589. [Description("供应商注册资金")]
  590. [Nullable(true)]
  591. [DataLength(22)]
  592. [JsonProperty("suppRegCapital")]
  593. public decimal? SuppRegCapital
  594. {
  595. get { return suppRegCapital; }
  596. set { suppRegCapital = value; }
  597. }
  598. /// <summary>
  599. /// 供应商注册币种
  600. /// </summary>
  601. [Description("供应商注册币种")]
  602. [Nullable(true)]
  603. [DataLength(64)]
  604. [JsonProperty("suppRegCapCurrency")]
  605. public string SuppRegCapCurrency
  606. {
  607. get { return suppRegCapCurrency; }
  608. set { suppRegCapCurrency = value; }
  609. }
  610. /// <summary>
  611. /// 供应商评定等级
  612. /// </summary>
  613. [Description("供应商评定等级")]
  614. [Nullable(true)]
  615. [DataLength(32)]
  616. [JsonProperty("suppPerGrade")]
  617. public string SuppPerGrade
  618. {
  619. get { return suppPerGrade; }
  620. set { suppPerGrade = value; }
  621. }
  622. /// <summary>
  623. /// 供应商合作关系等级
  624. /// </summary>
  625. [Description("供应商合作关系等级")]
  626. [Nullable(true)]
  627. [DataLength(64)]
  628. [JsonProperty("suppRelationGrade")]
  629. public string SuppRelationGrade
  630. {
  631. get { return suppRelationGrade; }
  632. set { suppRelationGrade = value; }
  633. }
  634. /// <summary>
  635. /// 供应商地址
  636. /// </summary>
  637. [Description("供应商地址")]
  638. [Nullable(true)]
  639. [DataLength(512)]
  640. [JsonProperty("suppAddress")]
  641. public string SuppAddress
  642. {
  643. get { return suppAddress; }
  644. set { suppAddress = value; }
  645. }
  646. /// <summary>
  647. /// 供应商地址邮编
  648. /// </summary>
  649. [Description("供应商地址邮编")]
  650. [Nullable(true)]
  651. [DataLength(32)]
  652. [JsonProperty("suppAddPostal")]
  653. public string SuppAddPostal
  654. {
  655. get { return suppAddPostal; }
  656. set { suppAddPostal = value; }
  657. }
  658. /// <summary>
  659. /// 供应商联系人名称
  660. /// </summary>
  661. [Description("供应商联系人名称")]
  662. [Nullable(true)]
  663. [DataLength(50)]
  664. [JsonProperty("supplierLinkMan")]
  665. public string SupplierLinkMan
  666. {
  667. get { return supplierLinkMan; }
  668. set { supplierLinkMan = value; }
  669. }
  670. /// <summary>
  671. /// 供应商联系人传真
  672. /// </summary>
  673. [Description("供应商联系人传真")]
  674. [Nullable(true)]
  675. [DataLength(256)]
  676. [JsonProperty("suppContactFax")]
  677. public string SuppContactFax
  678. {
  679. get { return suppContactFax; }
  680. set { suppContactFax = value; }
  681. }
  682. /// <summary>
  683. /// 供应商联系人电话
  684. /// </summary>
  685. [Description("供应商联系人电话")]
  686. [Nullable(true)]
  687. [DataLength(256)]
  688. [JsonProperty("suppContactTel")]
  689. public string SuppContactTel
  690. {
  691. get { return suppContactTel; }
  692. set { suppContactTel = value; }
  693. }
  694. /// <summary>
  695. /// 供应商联系人EMAIL
  696. /// </summary>
  697. [Description("供应商联系人EMAIL")]
  698. [Nullable(true)]
  699. [DataLength(256)]
  700. [JsonProperty("suppContactEmail")]
  701. public string SuppContactEmail
  702. {
  703. get { return suppContactEmail; }
  704. set { suppContactEmail = value; }
  705. }
  706. /// <summary>
  707. /// 供应商联系人手机
  708. /// </summary>
  709. [Description("供应商联系人手机")]
  710. [Nullable(true)]
  711. [DataLength(256)]
  712. [JsonProperty("suppContactCellPhone")]
  713. public string SuppContactCellPhone
  714. {
  715. get { return suppContactCellPhone; }
  716. set { suppContactCellPhone = value; }
  717. }
  718. /// <summary>
  719. /// 供应商联系人职务
  720. /// </summary>
  721. [Description("供应商联系人职务")]
  722. [Nullable(true)]
  723. [DataLength(256)]
  724. [JsonProperty("suppContactTitle")]
  725. public string SuppContactTitle
  726. {
  727. get { return suppContactTitle; }
  728. set { suppContactTitle = value; }
  729. }
  730. /// <summary>
  731. /// 供应商备注
  732. /// </summary>
  733. [Description("供应商备注")]
  734. [Nullable(true)]
  735. [DataLength(1024)]
  736. [JsonProperty("suppComment")]
  737. public string SuppComment
  738. {
  739. get { return suppComment; }
  740. set { suppComment = value; }
  741. }
  742. /// <summary>
  743. /// 供应商信用等级
  744. /// </summary>
  745. [Description("供应商信用等级")]
  746. [Nullable(true)]
  747. [DataLength(32)]
  748. [JsonProperty("suppCreditRate")]
  749. public string SuppCreditRate
  750. {
  751. get { return suppCreditRate; }
  752. set { suppCreditRate = value; }
  753. }
  754. /// <summary>
  755. /// 管理部门代码
  756. /// </summary>
  757. [Description("管理部门代码")]
  758. [Nullable(true)]
  759. [DataLength(10)]
  760. [JsonProperty("mentDeptCode")]
  761. public string MentDeptCode
  762. {
  763. get { return mentDeptCode; }
  764. set { mentDeptCode = value; }
  765. }
  766. /// <summary>
  767. /// 管理部门描叙
  768. /// </summary>
  769. [Description("管理部门描叙")]
  770. [Nullable(true)]
  771. [DataLength(20)]
  772. [JsonProperty("mentDeptDesc")]
  773. public string MentDeptDesc
  774. {
  775. get { return mentDeptDesc; }
  776. set { mentDeptDesc = value; }
  777. }
  778. /// <summary>
  779. /// 管理科室代码
  780. /// </summary>
  781. [Description("管理科室代码")]
  782. [Nullable(true)]
  783. [DataLength(10)]
  784. [JsonProperty("mentUnitCode")]
  785. public string MentUnitCode
  786. {
  787. get { return mentUnitCode; }
  788. set { mentUnitCode = value; }
  789. }
  790. /// <summary>
  791. /// 管理科室描叙
  792. /// </summary>
  793. [Description("管理科室描叙")]
  794. [Nullable(true)]
  795. [DataLength(20)]
  796. [JsonProperty("mentUnitDesc")]
  797. public string MentUnitDesc
  798. {
  799. get { return mentUnitDesc; }
  800. set { mentUnitDesc = value; }
  801. }
  802. /// <summary>
  803. /// 采购管理部门代码
  804. /// </summary>
  805. [Description("采购管理部门代码")]
  806. [Nullable(true)]
  807. [DataLength(10)]
  808. [JsonProperty("buyerDeptCode")]
  809. public string BuyerDeptCode
  810. {
  811. get { return buyerDeptCode; }
  812. set { buyerDeptCode = value; }
  813. }
  814. /// <summary>
  815. /// 采购管理部门描叙
  816. /// </summary>
  817. [Description("采购管理部门描叙")]
  818. [Nullable(true)]
  819. [DataLength(20)]
  820. [JsonProperty("buyerDeptDesc")]
  821. public string BuyerDeptDesc
  822. {
  823. get { return buyerDeptDesc; }
  824. set { buyerDeptDesc = value; }
  825. }
  826. /// <summary>
  827. /// 采购管理科室代码
  828. /// </summary>
  829. [Description("采购管理科室代码")]
  830. [Nullable(true)]
  831. [DataLength(10)]
  832. [JsonProperty("buyerUnitCode")]
  833. public string BuyerUnitCode
  834. {
  835. get { return buyerUnitCode; }
  836. set { buyerUnitCode = value; }
  837. }
  838. /// <summary>
  839. /// 采购管理科室描叙
  840. /// </summary>
  841. [Description("采购管理科室描叙")]
  842. [Nullable(true)]
  843. [DataLength(20)]
  844. [JsonProperty("buyerUnitDesc")]
  845. public string BuyerUnitDesc
  846. {
  847. get { return buyerUnitDesc; }
  848. set { buyerUnitDesc = value; }
  849. }
  850. /// <summary>
  851. /// 状态(1:未生效 2:审批中 3:已审批 4:已生效)
  852. /// </summary>
  853. [Description("状态(1:未生效 2:审批中 3:已审批 4:已生效)")]
  854. [Nullable(true)]
  855. [DataLength(1)]
  856. [JsonProperty("status")]
  857. public string Status
  858. {
  859. get { return status; }
  860. set { status = value; }
  861. }
  862. /// <summary>
  863. /// 数据状态(有效、无效)
  864. /// </summary>
  865. [Description("数据状态(有效、无效)")]
  866. [Nullable(true)]
  867. [DataLength(1)]
  868. [JsonProperty("validflag")]
  869. public string Validflag
  870. {
  871. get { return validflag; }
  872. set { validflag = value; }
  873. }
  874. /// <summary>
  875. /// 创建人
  876. /// </summary>
  877. [Description("创建人")]
  878. [Nullable(true)]
  879. [DataLength(20)]
  880. [JsonProperty("createName")]
  881. public string CreateName
  882. {
  883. get { return createName; }
  884. set { createName = value; }
  885. }
  886. /// <summary>
  887. /// 创建时间
  888. /// </summary>
  889. [Description("创建时间")]
  890. [Nullable(true)]
  891. [JsonProperty("createTime")]
  892. public string CreateTime
  893. {
  894. get { return createTime; }
  895. set { createTime = value; }
  896. }
  897. /// <summary>
  898. /// 修改人
  899. /// </summary>
  900. [Description("修改人")]
  901. [Nullable(true)]
  902. [DataLength(20)]
  903. [JsonProperty("updateName")]
  904. public string UpdateName
  905. {
  906. get { return updateName; }
  907. set { updateName = value; }
  908. }
  909. /// <summary>
  910. /// 修改时间
  911. /// </summary>
  912. [Description("修改时间")]
  913. [Nullable(true)]
  914. [JsonProperty("updateTime")]
  915. public string UpdateTime
  916. {
  917. get { return updateTime; }
  918. set { updateTime = value; }
  919. }
  920. /// <summary>
  921. /// 废除人
  922. /// </summary>
  923. [Description("废除人")]
  924. [Nullable(true)]
  925. [DataLength(20)]
  926. [JsonProperty("deleteName")]
  927. public string DeleteName
  928. {
  929. get { return deleteName; }
  930. set { deleteName = value; }
  931. }
  932. /// <summary>
  933. /// 废除时间
  934. /// </summary>
  935. [Description("废除时间")]
  936. [Nullable(true)]
  937. [JsonProperty("deleteTime")]
  938. public string DeleteTime
  939. {
  940. get { return deleteTime; }
  941. set { deleteTime = value; }
  942. }
  943. /// <summary>
  944. /// "是否暂挂1:暂挂 0:正常
  945. /// </summary>
  946. [Description("\"是否暂挂1:暂挂 0:正常")]
  947. [Nullable(true)]
  948. [DataLength(1)]
  949. [JsonProperty("suspendStatus")]
  950. public string SuspendStatus
  951. {
  952. get { return suspendStatus; }
  953. set { suspendStatus = value; }
  954. }
  955. /// <summary>
  956. /// 创建人ID
  957. /// </summary>
  958. [Description("创建人ID")]
  959. [Nullable(true)]
  960. [DataLength(20)]
  961. [JsonProperty("createUserid")]
  962. public string CreateUserid
  963. {
  964. get { return createUserid; }
  965. set { createUserid = value; }
  966. }
  967. /// <summary>
  968. /// 修改人ID
  969. /// </summary>
  970. [Description("修改人ID")]
  971. [Nullable(true)]
  972. [DataLength(20)]
  973. [JsonProperty("updateUserid")]
  974. public string UpdateUserid
  975. {
  976. get { return updateUserid; }
  977. set { updateUserid = value; }
  978. }
  979. /// <summary>
  980. /// 废除人ID
  981. /// </summary>
  982. [Description("废除人ID")]
  983. [Nullable(true)]
  984. [DataLength(20)]
  985. [JsonProperty("deleteUserid")]
  986. public string DeleteUserid
  987. {
  988. get { return deleteUserid; }
  989. set { deleteUserid = value; }
  990. }
  991. /// <summary>
  992. /// 登录密码(供应商管理中心)
  993. /// </summary>
  994. [Description("登录密码(供应商管理中心)")]
  995. [Nullable(true)]
  996. [DataLength(200)]
  997. [JsonProperty("password")]
  998. public string Password
  999. {
  1000. get { return password; }
  1001. set { password = value; }
  1002. }
  1003. /// <summary>
  1004. /// 税率(%)(默认17%)
  1005. /// </summary>
  1006. [Description("税率(%)(默认17%)")]
  1007. [Nullable(true)]
  1008. [DataLength(4)]
  1009. [JsonProperty("suppTaxRate")]
  1010. public string SuppTaxRate
  1011. {
  1012. get { return suppTaxRate; }
  1013. set { suppTaxRate = value; }
  1014. }
  1015. /// <summary>
  1016. /// 供应商国家编码
  1017. /// </summary>
  1018. [Description("供应商国家编码")]
  1019. [Nullable(true)]
  1020. [DataLength(20)]
  1021. [JsonProperty("suppNationalityCode")]
  1022. public string SuppNationalityCode
  1023. {
  1024. get { return suppNationalityCode; }
  1025. set { suppNationalityCode = value; }
  1026. }
  1027. /// <summary>
  1028. /// 供应商省份编码
  1029. /// </summary>
  1030. [Description("供应商省份编码")]
  1031. [Nullable(true)]
  1032. [DataLength(20)]
  1033. [JsonProperty("suppProvinceCode")]
  1034. public string SuppProvinceCode
  1035. {
  1036. get { return suppProvinceCode; }
  1037. set { suppProvinceCode = value; }
  1038. }
  1039. /// <summary>
  1040. /// 供应商办公省份编码
  1041. /// </summary>
  1042. [Description("供应商办公省份编码")]
  1043. [Nullable(true)]
  1044. [DataLength(20)]
  1045. [JsonProperty("suppOfficeProvinceCode")]
  1046. public string SuppOfficeProvinceCode
  1047. {
  1048. get { return suppOfficeProvinceCode; }
  1049. set { suppOfficeProvinceCode = value; }
  1050. }
  1051. /// <summary>
  1052. /// 供应商类型
  1053. /// </summary>
  1054. [Description("供应商类型")]
  1055. [Nullable(true)]
  1056. [DataLength(20)]
  1057. [JsonProperty("suppType")]
  1058. public string SuppType
  1059. {
  1060. get { return suppType; }
  1061. set { suppType = value; }
  1062. }
  1063. }
  1064. }