ContactDoc.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class ContactDoc
  8. {
  9. private string _contactid;
  10. private string _entid;
  11. private string _businessid;
  12. private string _groupid;
  13. private string _contactcode;
  14. private string _contact;
  15. private string _logogram;
  16. private string _idcard;
  17. private string _telephone;
  18. private string _fax;
  19. private string _mobile;
  20. private string _address;
  21. private string _postcode;
  22. private string _email;
  23. private string _birthday;
  24. private string _gender;
  25. private string _bgdesc;
  26. private string _favorite;
  27. private string _skill;
  28. private string _jiaszh;
  29. private string _shenlrq;
  30. private string _jshzhyxrq;
  31. private string _zhjcx;
  32. private string _xylevel;
  33. private decimal _koul;
  34. private string _isyw;
  35. private string _ishy;
  36. private string _levelid;
  37. private string _isfreeze;
  38. private string _islsgk;
  39. private string _isfwdx;
  40. private string _directorid;
  41. private string _positions;
  42. private string _islxr;
  43. private string _quanzh;
  44. private string _jiechms;
  45. private string _gerfx;
  46. private string _beactive;
  47. private int _doclevid;
  48. private string _createrid;
  49. private string _createrinfo;
  50. private string _remark;
  51. private string _lastmodifytime;
  52. private string _createtime;
  53. private string _deltime;
  54. private string _expautorg;
  55. private string _resautorg;
  56. private string _deluserid;
  57. private string _sources;
  58. private int _period;
  59. private string _isvalid;
  60. private string _busintype;
  61. private string _foreignname;
  62. private string _shortname;
  63. private string _conscert;
  64. private string _conscertdate;
  65. private string _consmandate;
  66. private int _contype;
  67. private string _conscope;
  68. private string _attachid;
  69. private string _qq;
  70. private string _fetionadd;
  71. private string _credulity;
  72. private string _microinfo;
  73. private string _consmanno;
  74. private string _bbsuserid;
  75. private int _shopid;
  76. private string _focusmicno;
  77. private string _userid;
  78. private string _iscrm;
  79. private string _isstudent;
  80. private string _ispatients;
  81. private string _firstorder;
  82. private string _ispickupman;
  83. private string _syncid;
  84. private int _agefrom;
  85. private int _ageto;
  86. private string _isreceman;
  87. private string _introdid;
  88. private string _servmanid;
  89. private int _yearbirth;
  90. private string _salemanid;
  91. private string _cusnatid;
  92. private string _cussubid;
  93. private string _issaledelegate;
  94. private string _isregister;
  95. public ContactDoc()
  96. {
  97. }
  98. public string ContactId
  99. {
  100. get { return _contactid; }
  101. set { _contactid = value; }
  102. }
  103. public string EntId
  104. {
  105. get { return _entid; }
  106. set { _entid = value; }
  107. }
  108. public string BusinessId
  109. {
  110. get { return _businessid; }
  111. set { _businessid = value; }
  112. }
  113. public string GroupId
  114. {
  115. get { return _groupid; }
  116. set { _groupid = value; }
  117. }
  118. public string ContactCode
  119. {
  120. get { return _contactcode; }
  121. set { _contactcode = value; }
  122. }
  123. public string Contact
  124. {
  125. get { return _contact; }
  126. set { _contact = value; }
  127. }
  128. public string Logogram
  129. {
  130. get { return _logogram; }
  131. set { _logogram = value; }
  132. }
  133. public string IdCard
  134. {
  135. get { return _idcard; }
  136. set { _idcard = value; }
  137. }
  138. public string Telephone
  139. {
  140. get { return _telephone; }
  141. set { _telephone = value; }
  142. }
  143. public string Fax
  144. {
  145. get { return _fax; }
  146. set { _fax = value; }
  147. }
  148. public string Mobile
  149. {
  150. get { return _mobile; }
  151. set { _mobile = value; }
  152. }
  153. public string Address
  154. {
  155. get { return _address; }
  156. set { _address = value; }
  157. }
  158. public string PostCode
  159. {
  160. get { return _postcode; }
  161. set { _postcode = value; }
  162. }
  163. public string Email
  164. {
  165. get { return _email; }
  166. set { _email = value; }
  167. }
  168. public string Birthday
  169. {
  170. get { return _birthday; }
  171. set { _birthday = value; }
  172. }
  173. public string Gender
  174. {
  175. get { return _gender; }
  176. set { _gender = value; }
  177. }
  178. public string BgDesc
  179. {
  180. get { return _bgdesc; }
  181. set { _bgdesc = value; }
  182. }
  183. public string Favorite
  184. {
  185. get { return _favorite; }
  186. set { _favorite = value; }
  187. }
  188. public string Skill
  189. {
  190. get { return _skill; }
  191. set { _skill = value; }
  192. }
  193. public string jiaszh
  194. {
  195. get { return _jiaszh; }
  196. set { _jiaszh = value; }
  197. }
  198. public string shenlrq
  199. {
  200. get { return _shenlrq; }
  201. set { _shenlrq = value; }
  202. }
  203. public string jshzhyxrq
  204. {
  205. get { return _jshzhyxrq; }
  206. set { _jshzhyxrq = value; }
  207. }
  208. public string zhjcx
  209. {
  210. get { return _zhjcx; }
  211. set { _zhjcx = value; }
  212. }
  213. public string xylevel
  214. {
  215. get { return _xylevel; }
  216. set { _xylevel = value; }
  217. }
  218. public decimal koul
  219. {
  220. get { return _koul; }
  221. set { _koul = value; }
  222. }
  223. public string isyw
  224. {
  225. get { return _isyw; }
  226. set { _isyw = value; }
  227. }
  228. public string ishy
  229. {
  230. get { return _ishy; }
  231. set { _ishy = value; }
  232. }
  233. public string LevelId
  234. {
  235. get { return _levelid; }
  236. set { _levelid = value; }
  237. }
  238. public string IsFreeze
  239. {
  240. get { return _isfreeze; }
  241. set { _isfreeze = value; }
  242. }
  243. public string islsgk
  244. {
  245. get { return _islsgk; }
  246. set { _islsgk = value; }
  247. }
  248. public string isfwdx
  249. {
  250. get { return _isfwdx; }
  251. set { _isfwdx = value; }
  252. }
  253. public string DirectorId
  254. {
  255. get { return _directorid; }
  256. set { _directorid = value; }
  257. }
  258. public string Positions
  259. {
  260. get { return _positions; }
  261. set { _positions = value; }
  262. }
  263. public string islxr
  264. {
  265. get { return _islxr; }
  266. set { _islxr = value; }
  267. }
  268. public string quanzh
  269. {
  270. get { return _quanzh; }
  271. set { _quanzh = value; }
  272. }
  273. public string jiechms
  274. {
  275. get { return _jiechms; }
  276. set { _jiechms = value; }
  277. }
  278. public string gerfx
  279. {
  280. get { return _gerfx; }
  281. set { _gerfx = value; }
  282. }
  283. public string Beactive
  284. {
  285. get { return _beactive; }
  286. set { _beactive = value; }
  287. }
  288. public int DocLevId
  289. {
  290. get { return _doclevid; }
  291. set { _doclevid = value; }
  292. }
  293. public string CreaterId
  294. {
  295. get { return _createrid; }
  296. set { _createrid = value; }
  297. }
  298. public string CreaterInfo
  299. {
  300. get { return _createrinfo; }
  301. set { _createrinfo = value; }
  302. }
  303. public string Remark
  304. {
  305. get { return _remark; }
  306. set { _remark = value; }
  307. }
  308. public string LastModifyTime
  309. {
  310. get { return _lastmodifytime; }
  311. set { _lastmodifytime = value; }
  312. }
  313. public string CreateTime
  314. {
  315. get { return _createtime; }
  316. set { _createtime = value; }
  317. }
  318. public string DelTime
  319. {
  320. get { return _deltime; }
  321. set { _deltime = value; }
  322. }
  323. public string ExpAutOrg
  324. {
  325. get { return _expautorg; }
  326. set { _expautorg = value; }
  327. }
  328. public string ResAutOrg
  329. {
  330. get { return _resautorg; }
  331. set { _resautorg = value; }
  332. }
  333. public string DelUserID
  334. {
  335. get { return _deluserid; }
  336. set { _deluserid = value; }
  337. }
  338. public string Sources
  339. {
  340. get { return _sources; }
  341. set { _sources = value; }
  342. }
  343. public int Period
  344. {
  345. get { return _period; }
  346. set { _period = value; }
  347. }
  348. public string IsValid
  349. {
  350. get { return _isvalid; }
  351. set { _isvalid = value; }
  352. }
  353. public string businType
  354. {
  355. get { return _busintype; }
  356. set { _busintype = value; }
  357. }
  358. public string ForeignName
  359. {
  360. get { return _foreignname; }
  361. set { _foreignname = value; }
  362. }
  363. public string ShortName
  364. {
  365. get { return _shortname; }
  366. set { _shortname = value; }
  367. }
  368. public string ConsCert
  369. {
  370. get { return _conscert; }
  371. set { _conscert = value; }
  372. }
  373. public string ConsCertDate
  374. {
  375. get { return _conscertdate; }
  376. set { _conscertdate = value; }
  377. }
  378. public string ConsManDate
  379. {
  380. get { return _consmandate; }
  381. set { _consmandate = value; }
  382. }
  383. public int ConType
  384. {
  385. get { return _contype; }
  386. set { _contype = value; }
  387. }
  388. public string ConScope
  389. {
  390. get { return _conscope; }
  391. set { _conscope = value; }
  392. }
  393. public string AttachId
  394. {
  395. get { return _attachid; }
  396. set { _attachid = value; }
  397. }
  398. public string QQ
  399. {
  400. get { return _qq; }
  401. set { _qq = value; }
  402. }
  403. public string FetionAdd
  404. {
  405. get { return _fetionadd; }
  406. set { _fetionadd = value; }
  407. }
  408. public string credulity
  409. {
  410. get { return _credulity; }
  411. set { _credulity = value; }
  412. }
  413. public string MicroInfo
  414. {
  415. get { return _microinfo; }
  416. set { _microinfo = value; }
  417. }
  418. public string ConsManNo
  419. {
  420. get { return _consmanno; }
  421. set { _consmanno = value; }
  422. }
  423. public string BbsUserId
  424. {
  425. get { return _bbsuserid; }
  426. set { _bbsuserid = value; }
  427. }
  428. public int ShopId
  429. {
  430. get { return _shopid; }
  431. set { _shopid = value; }
  432. }
  433. public string FocusMicNo
  434. {
  435. get { return _focusmicno; }
  436. set { _focusmicno = value; }
  437. }
  438. public string UserId
  439. {
  440. get { return _userid; }
  441. set { _userid = value; }
  442. }
  443. public string IsCrm
  444. {
  445. get { return _iscrm; }
  446. set { _iscrm = value; }
  447. }
  448. public string IsStudent
  449. {
  450. get { return _isstudent; }
  451. set { _isstudent = value; }
  452. }
  453. public string IsPatients
  454. {
  455. get { return _ispatients; }
  456. set { _ispatients = value; }
  457. }
  458. public string FirstOrder
  459. {
  460. get { return _firstorder; }
  461. set { _firstorder = value; }
  462. }
  463. public string IsPickUpMan
  464. {
  465. get { return _ispickupman; }
  466. set { _ispickupman = value; }
  467. }
  468. public string SyncId
  469. {
  470. get { return _syncid; }
  471. set { _syncid = value; }
  472. }
  473. public int AgeFrom
  474. {
  475. get { return _agefrom; }
  476. set { _agefrom = value; }
  477. }
  478. public int AgeTo
  479. {
  480. get { return _ageto; }
  481. set { _ageto = value; }
  482. }
  483. public string IsReceMan
  484. {
  485. get { return _isreceman; }
  486. set { _isreceman = value; }
  487. }
  488. public string IntrodId
  489. {
  490. get { return _introdid; }
  491. set { _introdid = value; }
  492. }
  493. public string ServManId
  494. {
  495. get { return _servmanid; }
  496. set { _servmanid = value; }
  497. }
  498. public int YearBirth
  499. {
  500. get { return _yearbirth; }
  501. set { _yearbirth = value; }
  502. }
  503. public string SaleManId
  504. {
  505. get { return _salemanid; }
  506. set { _salemanid = value; }
  507. }
  508. public string CusNatId
  509. {
  510. get { return _cusnatid; }
  511. set { _cusnatid = value; }
  512. }
  513. public string CusSubId
  514. {
  515. get { return _cussubid; }
  516. set { _cussubid = value; }
  517. }
  518. public string IsSaleDelegate
  519. {
  520. get { return _issaledelegate; }
  521. set { _issaledelegate = value; }
  522. }
  523. public string IsRegister
  524. {
  525. get { return _isregister; }
  526. set { _isregister = value; }
  527. }
  528. }
  529. public class ContactDocExt:ContactDoc{
  530. private string _BusinessName;
  531. public string BusinessName { get => _BusinessName; set => _BusinessName = value; }
  532. }
  533. }