周口郸城医院 DanChengCallCenter_API

T_Cus_ContactPerson.cs 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// T_Cus_ContactPerson:实体类(属性说明自动提取数据库字段的描述信息)
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Cus_ContactPerson
  13. {
  14. public T_Cus_ContactPerson()
  15. { }
  16. #region Model
  17. private int _f_manid;
  18. private int? _f_customerid;
  19. private int? _f_categoryid;
  20. private string _f_name;
  21. private string _f_ename;
  22. private bool _f_ismain = false;
  23. private string _f_sex;
  24. private string _f_telephone;
  25. private string _f_mobile;
  26. private string _f_fax;
  27. private string _f_address;
  28. private string _f_email;
  29. private string _f_duty;
  30. private string _f_department;
  31. private string _f_qq;
  32. private string _f_msn;
  33. private bool _f_isbirth;
  34. private DateTime? _f_birthday;
  35. private int? _f_birthtype = 0;
  36. private DateTime? _f_birthcn;
  37. private int? _f_birthcnyear;
  38. private int? _f_birthcnmonth;
  39. private int? _f_birthcnday;
  40. private bool _f_issms;
  41. private string _f_smscontent;
  42. private DateTime? _f_firstdate;
  43. private DateTime? _f_latelydate;
  44. private string _f_remark;
  45. private Guid _f_createby;
  46. private DateTime? _f_createon;
  47. private Guid _f_modifyby;
  48. private DateTime? _f_modifyon;
  49. private int? _f_deletionstatecode = 0;
  50. private string _f_useraccount;
  51. private string _f_password;
  52. private int? _f_roleid;
  53. /// <summary>
  54. ///
  55. /// </summary>
  56. public int F_ManId
  57. {
  58. set { _f_manid = value; }
  59. get { return _f_manid; }
  60. }
  61. /// <summary>
  62. ///
  63. /// </summary>
  64. public int? F_CustomerId
  65. {
  66. set { _f_customerid = value; }
  67. get { return _f_customerid; }
  68. }
  69. /// <summary>
  70. ///
  71. /// </summary>
  72. public int? F_CategoryId
  73. {
  74. set { _f_categoryid = value; }
  75. get { return _f_categoryid; }
  76. }
  77. /// <summary>
  78. ///
  79. /// </summary>
  80. public string F_Name
  81. {
  82. set { _f_name = value; }
  83. get { return _f_name; }
  84. }
  85. /// <summary>
  86. ///
  87. /// </summary>
  88. public string F_EName
  89. {
  90. set { _f_ename = value; }
  91. get { return _f_ename; }
  92. }
  93. /// <summary>
  94. ///
  95. /// </summary>
  96. public bool F_IsMain
  97. {
  98. set { _f_ismain = value; }
  99. get { return _f_ismain; }
  100. }
  101. /// <summary>
  102. ///
  103. /// </summary>
  104. public string F_Sex
  105. {
  106. set { _f_sex = value; }
  107. get { return _f_sex; }
  108. }
  109. /// <summary>
  110. ///
  111. /// </summary>
  112. public string F_Telephone
  113. {
  114. set { _f_telephone = value; }
  115. get { return _f_telephone; }
  116. }
  117. /// <summary>
  118. ///
  119. /// </summary>
  120. public string F_Mobile
  121. {
  122. set { _f_mobile = value; }
  123. get { return _f_mobile; }
  124. }
  125. /// <summary>
  126. ///
  127. /// </summary>
  128. public string F_Fax
  129. {
  130. set { _f_fax = value; }
  131. get { return _f_fax; }
  132. }
  133. /// <summary>
  134. ///
  135. /// </summary>
  136. public string F_Address
  137. {
  138. set { _f_address = value; }
  139. get { return _f_address; }
  140. }
  141. /// <summary>
  142. ///
  143. /// </summary>
  144. public string F_Email
  145. {
  146. set { _f_email = value; }
  147. get { return _f_email; }
  148. }
  149. /// <summary>
  150. ///
  151. /// </summary>
  152. public string F_Duty
  153. {
  154. set { _f_duty = value; }
  155. get { return _f_duty; }
  156. }
  157. /// <summary>
  158. ///
  159. /// </summary>
  160. public string F_Department
  161. {
  162. set { _f_department = value; }
  163. get { return _f_department; }
  164. }
  165. /// <summary>
  166. ///
  167. /// </summary>
  168. public string F_QQ
  169. {
  170. set { _f_qq = value; }
  171. get { return _f_qq; }
  172. }
  173. /// <summary>
  174. ///
  175. /// </summary>
  176. public string F_MSN
  177. {
  178. set { _f_msn = value; }
  179. get { return _f_msn; }
  180. }
  181. /// <summary>
  182. ///
  183. /// </summary>
  184. public bool F_IsBirth
  185. {
  186. set { _f_isbirth = value; }
  187. get { return _f_isbirth; }
  188. }
  189. /// <summary>
  190. ///
  191. /// </summary>
  192. public DateTime? F_Birthday
  193. {
  194. set { _f_birthday = value; }
  195. get { return _f_birthday; }
  196. }
  197. /// <summary>
  198. /// 生日类型(0阳历、1农历)
  199. /// </summary>
  200. public int? F_BirthType
  201. {
  202. set { _f_birthtype = value; }
  203. get { return _f_birthtype; }
  204. }
  205. /// <summary>
  206. /// 农历生日
  207. /// </summary>
  208. public DateTime? F_BirthCN
  209. {
  210. set { _f_birthcn = value; }
  211. get { return _f_birthcn; }
  212. }
  213. /// <summary>
  214. /// 农历年
  215. /// </summary>
  216. public int? F_BirthCNYear
  217. {
  218. set { _f_birthcnyear = value; }
  219. get { return _f_birthcnyear; }
  220. }
  221. /// <summary>
  222. /// 农历月
  223. /// </summary>
  224. public int? F_BirthCNMonth
  225. {
  226. set { _f_birthcnmonth = value; }
  227. get { return _f_birthcnmonth; }
  228. }
  229. /// <summary>
  230. /// 农历日
  231. /// </summary>
  232. public int? F_BirthCNDay
  233. {
  234. set { _f_birthcnday = value; }
  235. get { return _f_birthcnday; }
  236. }
  237. /// <summary>
  238. ///
  239. /// </summary>
  240. public bool F_IsSMS
  241. {
  242. set { _f_issms = value; }
  243. get { return _f_issms; }
  244. }
  245. /// <summary>
  246. ///
  247. /// </summary>
  248. public string F_SMSContent
  249. {
  250. set { _f_smscontent = value; }
  251. get { return _f_smscontent; }
  252. }
  253. /// <summary>
  254. ///
  255. /// </summary>
  256. public DateTime? F_FirstDate
  257. {
  258. set { _f_firstdate = value; }
  259. get { return _f_firstdate; }
  260. }
  261. /// <summary>
  262. ///
  263. /// </summary>
  264. public DateTime? F_LatelyDate
  265. {
  266. set { _f_latelydate = value; }
  267. get { return _f_latelydate; }
  268. }
  269. /// <summary>
  270. ///
  271. /// </summary>
  272. public string F_Remark
  273. {
  274. set { _f_remark = value; }
  275. get { return _f_remark; }
  276. }
  277. /// <summary>
  278. ///
  279. /// </summary>
  280. public Guid F_CreateBy
  281. {
  282. set { _f_createby = value; }
  283. get { return _f_createby; }
  284. }
  285. /// <summary>
  286. ///
  287. /// </summary>
  288. public DateTime? F_CreateOn
  289. {
  290. set { _f_createon = value; }
  291. get { return _f_createon; }
  292. }
  293. /// <summary>
  294. ///
  295. /// </summary>
  296. public Guid F_ModifyBy
  297. {
  298. set { _f_modifyby = value; }
  299. get { return _f_modifyby; }
  300. }
  301. /// <summary>
  302. ///
  303. /// </summary>
  304. public DateTime? F_ModifyOn
  305. {
  306. set { _f_modifyon = value; }
  307. get { return _f_modifyon; }
  308. }
  309. /// <summary>
  310. ///
  311. /// </summary>
  312. public int? F_DeletionStateCode
  313. {
  314. set { _f_deletionstatecode = value; }
  315. get { return _f_deletionstatecode; }
  316. }
  317. /// <summary>
  318. /// F_UserAccount
  319. /// </summary>
  320. public string F_UserAccount
  321. {
  322. get { return _f_useraccount; }
  323. set { _f_useraccount = value; }
  324. }
  325. /// <summary>
  326. /// F_Password
  327. /// </summary>
  328. public string F_Password
  329. {
  330. get { return _f_password; }
  331. set { _f_password = value; }
  332. }
  333. /// <summary>
  334. /// F_RoleId
  335. /// </summary>
  336. public int? F_RoleId
  337. {
  338. get { return _f_roleid; }
  339. set { _f_roleid = value; }
  340. }
  341. #endregion Model
  342. }
  343. }