GzcLogEntity.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. <?php
  2. namespace app\entity\data\gzc;
  3. use app\entity\data\DataEntity;
  4. class GzcLogEntity extends DataEntity
  5. {
  6. public $id = 0; // 日志ID
  7. public $uid = 0; // 用户ID
  8. public $platformNo = ''; // 平台申请单号
  9. public $accountType = 0; // 账号类型 1银行卡 2支付宝 3微信
  10. public $bankName = ''; // 开户银行名称
  11. public $branchName = ''; // 支行名称
  12. public $bankAccount = ''; // 开户银行账号
  13. public $bankNo = ''; // 银行流水号
  14. public $alipayAccount = ''; // 支付宝支付账号
  15. public $alipayNo = ''; // 支付宝流水号
  16. public $wxpayAccount = ''; // 微信账号
  17. public $wxpayNo = ''; // 交易流水号
  18. public $userName = ''; // 消费者姓名
  19. public $mobile = ''; // 消费者电话
  20. public $userCard = ''; // 消费者证件号
  21. public $pension = 0.00; // 存入的养老金金额
  22. public $gzc = 0; // 公证处是否已发起入账 0否 1是
  23. public $gzcDepositNo = ''; // 公证处入账明细编号
  24. public $gzcConfirmResult = ''; // 公证处入账结果
  25. public $success = 0; // 是否入账成功 0否 1是
  26. public $orderType = 0; // 订单类型 1-线下支付 2-线上支付 3-拼多多 4-京东 5-苏宁 6-淘宝 7-唯品会 8-抖音 9-话费
  27. public $outTradeNo = ''; // 单号
  28. public $depositDt = null; // 存入时间
  29. public $payTime = null; // 支付时间
  30. public $createTime = null; // 创建时间
  31. public $updateTime = null; // 更新时间
  32. public $linkId = 0; // 关联账单id
  33. /**
  34. * @return int
  35. */
  36. public function getId(): int
  37. {
  38. return $this->id;
  39. }
  40. /**
  41. * @param int $id
  42. * @return GzcLogEntity
  43. */
  44. public function setId(int $id): GzcLogEntity
  45. {
  46. $this->id = $id;
  47. return $this;
  48. }
  49. /**
  50. * @return int
  51. */
  52. public function getUid(): int
  53. {
  54. return $this->uid;
  55. }
  56. /**
  57. * @param int $uid
  58. * @return GzcLogEntity
  59. */
  60. public function setUid(int $uid): GzcLogEntity
  61. {
  62. $this->uid = $uid;
  63. return $this;
  64. }
  65. /**
  66. * @return string
  67. */
  68. public function getPlatformNo(): string
  69. {
  70. return $this->platformNo;
  71. }
  72. /**
  73. * @param string $platformNo
  74. * @return GzcLogEntity
  75. */
  76. public function setPlatformNo(string $platformNo): GzcLogEntity
  77. {
  78. $this->platformNo = $platformNo;
  79. return $this;
  80. }
  81. /**
  82. * @return int
  83. */
  84. public function getAccountType(): int
  85. {
  86. return $this->accountType;
  87. }
  88. /**
  89. * @param int $accountType
  90. * @return GzcLogEntity
  91. */
  92. public function setAccountType(int $accountType): GzcLogEntity
  93. {
  94. $this->accountType = $accountType;
  95. return $this;
  96. }
  97. /**
  98. * @return string
  99. */
  100. public function getBankName(): string
  101. {
  102. return $this->bankName;
  103. }
  104. /**
  105. * @param string $bankName
  106. * @return GzcLogEntity
  107. */
  108. public function setBankName(string $bankName): GzcLogEntity
  109. {
  110. $this->bankName = $bankName;
  111. return $this;
  112. }
  113. /**
  114. * @return string
  115. */
  116. public function getBranchName(): string
  117. {
  118. return $this->branchName;
  119. }
  120. /**
  121. * @param string $branchName
  122. * @return GzcLogEntity
  123. */
  124. public function setBranchName(string $branchName): GzcLogEntity
  125. {
  126. $this->branchName = $branchName;
  127. return $this;
  128. }
  129. /**
  130. * @return string
  131. */
  132. public function getBankAccount(): string
  133. {
  134. return $this->bankAccount;
  135. }
  136. /**
  137. * @param string $bankAccount
  138. * @return GzcLogEntity
  139. */
  140. public function setBankAccount(string $bankAccount): GzcLogEntity
  141. {
  142. $this->bankAccount = $bankAccount;
  143. return $this;
  144. }
  145. /**
  146. * @return string
  147. */
  148. public function getBankNo(): string
  149. {
  150. return $this->bankNo;
  151. }
  152. /**
  153. * @param string $bankNo
  154. * @return GzcLogEntity
  155. */
  156. public function setBankNo(string $bankNo): GzcLogEntity
  157. {
  158. $this->bankNo = $bankNo;
  159. return $this;
  160. }
  161. /**
  162. * @return string
  163. */
  164. public function getAlipayAccount(): string
  165. {
  166. return $this->alipayAccount;
  167. }
  168. /**
  169. * @param string $alipayAccount
  170. * @return GzcLogEntity
  171. */
  172. public function setAlipayAccount(string $alipayAccount): GzcLogEntity
  173. {
  174. $this->alipayAccount = $alipayAccount;
  175. return $this;
  176. }
  177. /**
  178. * @return string
  179. */
  180. public function getAlipayNo(): string
  181. {
  182. return $this->alipayNo;
  183. }
  184. /**
  185. * @param string $alipayNo
  186. * @return GzcLogEntity
  187. */
  188. public function setAlipayNo(string $alipayNo): GzcLogEntity
  189. {
  190. $this->alipayNo = $alipayNo;
  191. return $this;
  192. }
  193. /**
  194. * @return string
  195. */
  196. public function getWxpayAccount(): string
  197. {
  198. return $this->wxpayAccount;
  199. }
  200. /**
  201. * @param string $wxpayAccount
  202. * @return GzcLogEntity
  203. */
  204. public function setWxpayAccount(string $wxpayAccount): GzcLogEntity
  205. {
  206. $this->wxpayAccount = $wxpayAccount;
  207. return $this;
  208. }
  209. /**
  210. * @return string
  211. */
  212. public function getWxpayNo(): string
  213. {
  214. return $this->wxpayNo;
  215. }
  216. /**
  217. * @param string $wxpayNo
  218. * @return GzcLogEntity
  219. */
  220. public function setWxpayNo(string $wxpayNo): GzcLogEntity
  221. {
  222. $this->wxpayNo = $wxpayNo;
  223. return $this;
  224. }
  225. /**
  226. * @return string
  227. */
  228. public function getUserName(): string
  229. {
  230. return $this->userName;
  231. }
  232. /**
  233. * @param string $userName
  234. * @return GzcLogEntity
  235. */
  236. public function setUserName(string $userName): GzcLogEntity
  237. {
  238. $this->userName = $userName;
  239. return $this;
  240. }
  241. /**
  242. * @return string
  243. */
  244. public function getMobile(): string
  245. {
  246. return $this->mobile;
  247. }
  248. /**
  249. * @param string $mobile
  250. * @return GzcLogEntity
  251. */
  252. public function setMobile(string $mobile): GzcLogEntity
  253. {
  254. $this->mobile = $mobile;
  255. return $this;
  256. }
  257. /**
  258. * @return string
  259. */
  260. public function getUserCard(): string
  261. {
  262. return $this->userCard;
  263. }
  264. /**
  265. * @param string $userCard
  266. * @return GzcLogEntity
  267. */
  268. public function setUserCard(string $userCard): GzcLogEntity
  269. {
  270. $this->userCard = $userCard;
  271. return $this;
  272. }
  273. /**
  274. * @return float
  275. */
  276. public function getPension(): float
  277. {
  278. return $this->pension;
  279. }
  280. /**
  281. * @param float $pension
  282. * @return GzcLogEntity
  283. */
  284. public function setPension(float $pension): GzcLogEntity
  285. {
  286. $this->pension = $pension;
  287. return $this;
  288. }
  289. /**
  290. * @return int
  291. */
  292. public function getGzc(): int
  293. {
  294. return $this->gzc;
  295. }
  296. /**
  297. * @param int $gzc
  298. * @return GzcLogEntity
  299. */
  300. public function setGzc(int $gzc): GzcLogEntity
  301. {
  302. $this->gzc = $gzc;
  303. return $this;
  304. }
  305. /**
  306. * @return string
  307. */
  308. public function getGzcDepositNo(): string
  309. {
  310. return $this->gzcDepositNo;
  311. }
  312. /**
  313. * @param string $gzcDepositNo
  314. * @return GzcLogEntity
  315. */
  316. public function setGzcDepositNo(string $gzcDepositNo): GzcLogEntity
  317. {
  318. $this->gzcDepositNo = $gzcDepositNo;
  319. return $this;
  320. }
  321. /**
  322. * @return string
  323. */
  324. public function getGzcConfirmResult(): string
  325. {
  326. return $this->gzcConfirmResult;
  327. }
  328. /**
  329. * @param string $gzcConfirmResult
  330. * @return GzcLogEntity
  331. */
  332. public function setGzcConfirmResult(string $gzcConfirmResult): GzcLogEntity
  333. {
  334. $this->gzcConfirmResult = $gzcConfirmResult;
  335. return $this;
  336. }
  337. /**
  338. * @return int
  339. */
  340. public function getSuccess(): int
  341. {
  342. return $this->success;
  343. }
  344. /**
  345. * @param int $success
  346. * @return GzcLogEntity
  347. */
  348. public function setSuccess(int $success): GzcLogEntity
  349. {
  350. $this->success = $success;
  351. return $this;
  352. }
  353. /**
  354. * @return int
  355. */
  356. public function getOrderType(): int
  357. {
  358. return $this->orderType;
  359. }
  360. /**
  361. * @param int $orderType
  362. * @return GzcLogEntity
  363. */
  364. public function setOrderType(int $orderType): GzcLogEntity
  365. {
  366. $this->orderType = $orderType;
  367. return $this;
  368. }
  369. /**
  370. * @return string
  371. */
  372. public function getOutTradeNo(): string
  373. {
  374. return $this->outTradeNo;
  375. }
  376. /**
  377. * @param string $outTradeNo
  378. * @return GzcLogEntity
  379. */
  380. public function setOutTradeNo(string $outTradeNo): GzcLogEntity
  381. {
  382. $this->outTradeNo = $outTradeNo;
  383. return $this;
  384. }
  385. /**
  386. * @return null
  387. */
  388. public function getDepositDt()
  389. {
  390. return $this->depositDt;
  391. }
  392. /**
  393. * @param null $depositDt
  394. * @return GzcLogEntity
  395. */
  396. public function setDepositDt($depositDt)
  397. {
  398. $this->depositDt = $depositDt;
  399. return $this;
  400. }
  401. /**
  402. * @return null
  403. */
  404. public function getPayTime()
  405. {
  406. return $this->payTime;
  407. }
  408. /**
  409. * @param null $payTime
  410. * @return GzcLogEntity
  411. */
  412. public function setPayTime($payTime)
  413. {
  414. $this->payTime = $payTime;
  415. return $this;
  416. }
  417. /**
  418. * @return null
  419. */
  420. public function getCreateTime()
  421. {
  422. return $this->createTime;
  423. }
  424. /**
  425. * @param null $createTime
  426. * @return GzcLogEntity
  427. */
  428. public function setCreateTime($createTime)
  429. {
  430. $this->createTime = $createTime;
  431. return $this;
  432. }
  433. /**
  434. * @return null
  435. */
  436. public function getUpdateTime()
  437. {
  438. return $this->updateTime;
  439. }
  440. /**
  441. * @param null $updateTime
  442. * @return GzcLogEntity
  443. */
  444. public function setUpdateTime($updateTime)
  445. {
  446. $this->updateTime = $updateTime;
  447. return $this;
  448. }
  449. /**
  450. * @return int
  451. */
  452. public function getLinkId(): int
  453. {
  454. return $this->linkId;
  455. }
  456. /**
  457. * @param int $linkId
  458. * @return GzcLogEntity
  459. */
  460. public function setLinkId(int $linkId): GzcLogEntity
  461. {
  462. $this->linkId = $linkId;
  463. return $this;
  464. }
  465. }