MerchantEntity.php 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758
  1. <?php
  2. namespace app\entity\data\merchant;
  3. use app\entity\data\DataEntity;
  4. class MerchantEntity extends DataEntity
  5. {
  6. public $merId = null; // 商户id
  7. public $uid = null; // 关联用户
  8. public $spreadUid = null; // 邀请用户id
  9. public $merchNo = null; // 商户在SaaS平台的编号
  10. public $tradeType = null; // 商户支持的交易类型
  11. public $categoryId = null; // 商户分类 id
  12. public $merName = null; // 商户名称
  13. public $realName = null; // 商户姓名
  14. public $merPhone = null; // 商户手机号
  15. public $haikeSettleStatus = null; // 海科商户结算状态
  16. public $name = null; // 联系人姓名
  17. public $merAddress = null; // 商户地址
  18. public $merKeyword = null; // 商户关键字
  19. public $merAvatar = null; // 商户头像
  20. public $merBanner = null; // 商户banner图片
  21. public $sales = null; // 销量
  22. public $productScore = null; // 商品描述评分
  23. public $serviceScore = null; // 服务评分
  24. public $postageScore = null; // 物流评分
  25. public $mark = null; // 商户备注
  26. public $regAdminId = null; // 总后台管理员ID
  27. public $sort = null; // 排序
  28. public $status = null; // 商户是否禁用
  29. public $commissionRate = null; // 提成比例
  30. public $isDel = null; // 是否删除
  31. public $isAudit = null; // 产品是否审核
  32. public $isBroRoom = null; // 是否审核直播间
  33. public $isBroGoods = null; // 是否审核直播商品
  34. public $isBest = null; // 是否推荐
  35. public $merState = null; // 商户是否开启
  36. public $merInfo = null; // 店铺简介
  37. public $servicePhone = null; // 店铺电话
  38. public $createTime = null; // 创建时间
  39. public $updateTime = null; // 修改时间
  40. public $careCount = null; // 关注总数
  41. public $copyProductNum = null; // 剩余复制商品次数
  42. public $lat = null; // 纬度
  43. public $lng = null; // 经度
  44. public $doorhead = null; // 门头照
  45. public $addr = null; // 详细地址
  46. public $houseNumber = null; // 门牌号
  47. public $businessLicense = null; // 营业执照
  48. public $recommender = null; // 推广员
  49. public $contentPic = null; // 图片集
  50. public $cardPositivePerson = null; // 法人身份证正面
  51. public $cardBackPerson = null; // 法人身份证反面
  52. public $email = null; // 邮箱
  53. public $bankAccount = null; // 开户账号
  54. public $bankLocation = null; // 开户所在地
  55. public $bankDeposit = null; // 开户行
  56. public $bankBranch = null; // 开户支行
  57. public $openAccount = null; // 开户许可证
  58. public $logo = null; // logo
  59. public $businessAddr = null; // 营业执照地址
  60. public $districtAddr = null; // 所属商圈
  61. public $type = null; // 1企业2个体3个人
  62. public $provinceId = null; // 省份地址id
  63. public $cityId = null; // 城市地址id
  64. public $areaId = null; // 区域地址id
  65. public $streetId = null; // 街道地址id
  66. public $branch = null; // 分店
  67. public $businessId = null; // 客服应用id
  68. public $requestId = null; // 请求ID
  69. public $renqizhi = null; // 任期制
  70. public $withdrawalSetting = null; // 海科结算方式
  71. public $haikeMp = null; // 海科小程序收款
  72. public $memberNo = null; // 拉卡拉会员号
  73. public $sxySubmerchantId = null; // 首信易二级商户编号
  74. public $buyTime = null; // 购买年费时间
  75. public $tzMoney = null; // 通证金额
  76. public $tzIntegral = null; // 通证积分
  77. public $hfStatus = null; // 汇付审核状态
  78. public $hfMemberId = null; // 汇付的用户ID
  79. public $hfMemberIdWx = null; // 汇付的用户ID微信
  80. public $hfMsg = null; // 汇付消息
  81. public $merchantType = null; // 商户类型
  82. public $hfType = null; // 汇付类型
  83. public $expireTime = null; // 到期时间
  84. public $hfDimensionIdWx = null; // 微信分账ID
  85. public $hfDimensionIdAl = null; // 支付宝分账ID
  86. public $hfPingtaiIdAl = null; // 平台分账ID支付宝
  87. public $hfPingtaiIdWx = null; // 平台分账ID微信
  88. public $dcId = null; // 大仓id
  89. public $consumptionScore = null; // 消费分
  90. public $brokeragePrice = null; // 商户佣金金额
  91. public $score = null; // 消费分
  92. public $merchantLevel = null; // 商户等级
  93. public $isExperience = null; // 是否体验店
  94. public $merType = null; // 商户类型
  95. public $merChain = null; // 是否连锁店
  96. public $bzj = null; // 是否已经缴纳了保证金
  97. public $goldenBeans = null; // 金豆
  98. /**
  99. *@return mixed
  100. */
  101. public function getMerId()
  102. {
  103. return $this->merId;
  104. }
  105. /**
  106. *@param mixed $merId
  107. * @return MerchantEntity
  108. */
  109. public function setMerId($merId): MerchantEntity
  110. {
  111. $this->merId = $merId;
  112. return $this;
  113. }
  114. /**
  115. *@return mixed
  116. */
  117. public function getUid()
  118. {
  119. return $this->uid;
  120. }
  121. /**
  122. *@param mixed $uid
  123. * @return MerchantEntity
  124. */
  125. public function setUid($uid): MerchantEntity
  126. {
  127. $this->uid = $uid;
  128. return $this;
  129. }
  130. /**
  131. *@return mixed
  132. */
  133. public function getSpreadUid()
  134. {
  135. return $this->spreadUid;
  136. }
  137. /**
  138. *@param mixed $spreadUid
  139. * @return MerchantEntity
  140. */
  141. public function setSpreadUid($spreadUid): MerchantEntity
  142. {
  143. $this->spreadUid = $spreadUid;
  144. return $this;
  145. }
  146. /**
  147. *@return mixed
  148. */
  149. public function getMerchNo()
  150. {
  151. return $this->merchNo;
  152. }
  153. /**
  154. *@param mixed $merchNo
  155. * @return MerchantEntity
  156. */
  157. public function setMerchNo($merchNo): MerchantEntity
  158. {
  159. $this->merchNo = $merchNo;
  160. return $this;
  161. }
  162. /**
  163. *@return mixed
  164. */
  165. public function getTradeType()
  166. {
  167. return $this->tradeType;
  168. }
  169. /**
  170. *@param mixed $tradeType
  171. * @return MerchantEntity
  172. */
  173. public function setTradeType($tradeType): MerchantEntity
  174. {
  175. $this->tradeType = $tradeType;
  176. return $this;
  177. }
  178. /**
  179. *@return mixed
  180. */
  181. public function getCategoryId()
  182. {
  183. return $this->categoryId;
  184. }
  185. /**
  186. *@param mixed $categoryId
  187. * @return MerchantEntity
  188. */
  189. public function setCategoryId($categoryId): MerchantEntity
  190. {
  191. $this->categoryId = $categoryId;
  192. return $this;
  193. }
  194. /**
  195. *@return mixed
  196. */
  197. public function getMerName()
  198. {
  199. return $this->merName;
  200. }
  201. /**
  202. *@param mixed $merName
  203. * @return MerchantEntity
  204. */
  205. public function setMerName($merName): MerchantEntity
  206. {
  207. $this->merName = $merName;
  208. return $this;
  209. }
  210. /**
  211. *@return mixed
  212. */
  213. public function getRealName()
  214. {
  215. return $this->realName;
  216. }
  217. /**
  218. *@param mixed $realName
  219. * @return MerchantEntity
  220. */
  221. public function setRealName($realName): MerchantEntity
  222. {
  223. $this->realName = $realName;
  224. return $this;
  225. }
  226. /**
  227. *@return mixed
  228. */
  229. public function getMerPhone()
  230. {
  231. return $this->merPhone;
  232. }
  233. /**
  234. *@param mixed $merPhone
  235. * @return MerchantEntity
  236. */
  237. public function setMerPhone($merPhone): MerchantEntity
  238. {
  239. $this->merPhone = $merPhone;
  240. return $this;
  241. }
  242. /**
  243. *@return mixed
  244. */
  245. public function getHaikeSettleStatus()
  246. {
  247. return $this->haikeSettleStatus;
  248. }
  249. /**
  250. *@param mixed $haikeSettleStatus
  251. * @return MerchantEntity
  252. */
  253. public function setHaikeSettleStatus($haikeSettleStatus): MerchantEntity
  254. {
  255. $this->haikeSettleStatus = $haikeSettleStatus;
  256. return $this;
  257. }
  258. /**
  259. *@return mixed
  260. */
  261. public function getName()
  262. {
  263. return $this->name;
  264. }
  265. /**
  266. *@param mixed $name
  267. * @return MerchantEntity
  268. */
  269. public function setName($name): MerchantEntity
  270. {
  271. $this->name = $name;
  272. return $this;
  273. }
  274. /**
  275. *@return mixed
  276. */
  277. public function getMerAddress()
  278. {
  279. return $this->merAddress;
  280. }
  281. /**
  282. *@param mixed $merAddress
  283. * @return MerchantEntity
  284. */
  285. public function setMerAddress($merAddress): MerchantEntity
  286. {
  287. $this->merAddress = $merAddress;
  288. return $this;
  289. }
  290. /**
  291. *@return mixed
  292. */
  293. public function getMerKeyword()
  294. {
  295. return $this->merKeyword;
  296. }
  297. /**
  298. *@param mixed $merKeyword
  299. * @return MerchantEntity
  300. */
  301. public function setMerKeyword($merKeyword): MerchantEntity
  302. {
  303. $this->merKeyword = $merKeyword;
  304. return $this;
  305. }
  306. /**
  307. *@return mixed
  308. */
  309. public function getMerAvatar()
  310. {
  311. return $this->merAvatar;
  312. }
  313. /**
  314. *@param mixed $merAvatar
  315. * @return MerchantEntity
  316. */
  317. public function setMerAvatar($merAvatar): MerchantEntity
  318. {
  319. $this->merAvatar = $merAvatar;
  320. return $this;
  321. }
  322. /**
  323. *@return mixed
  324. */
  325. public function getMerBanner()
  326. {
  327. return $this->merBanner;
  328. }
  329. /**
  330. *@param mixed $merBanner
  331. * @return MerchantEntity
  332. */
  333. public function setMerBanner($merBanner): MerchantEntity
  334. {
  335. $this->merBanner = $merBanner;
  336. return $this;
  337. }
  338. /**
  339. *@return mixed
  340. */
  341. public function getSales()
  342. {
  343. return $this->sales;
  344. }
  345. /**
  346. *@param mixed $sales
  347. * @return MerchantEntity
  348. */
  349. public function setSales($sales): MerchantEntity
  350. {
  351. $this->sales = $sales;
  352. return $this;
  353. }
  354. /**
  355. *@return mixed
  356. */
  357. public function getProductScore()
  358. {
  359. return $this->productScore;
  360. }
  361. /**
  362. *@param mixed $productScore
  363. * @return MerchantEntity
  364. */
  365. public function setProductScore($productScore): MerchantEntity
  366. {
  367. $this->productScore = $productScore;
  368. return $this;
  369. }
  370. /**
  371. *@return mixed
  372. */
  373. public function getServiceScore()
  374. {
  375. return $this->serviceScore;
  376. }
  377. /**
  378. *@param mixed $serviceScore
  379. * @return MerchantEntity
  380. */
  381. public function setServiceScore($serviceScore): MerchantEntity
  382. {
  383. $this->serviceScore = $serviceScore;
  384. return $this;
  385. }
  386. /**
  387. *@return mixed
  388. */
  389. public function getPostageScore()
  390. {
  391. return $this->postageScore;
  392. }
  393. /**
  394. *@param mixed $postageScore
  395. * @return MerchantEntity
  396. */
  397. public function setPostageScore($postageScore): MerchantEntity
  398. {
  399. $this->postageScore = $postageScore;
  400. return $this;
  401. }
  402. /**
  403. *@return mixed
  404. */
  405. public function getMark()
  406. {
  407. return $this->mark;
  408. }
  409. /**
  410. *@param mixed $mark
  411. * @return MerchantEntity
  412. */
  413. public function setMark($mark): MerchantEntity
  414. {
  415. $this->mark = $mark;
  416. return $this;
  417. }
  418. /**
  419. *@return mixed
  420. */
  421. public function getRegAdminId()
  422. {
  423. return $this->regAdminId;
  424. }
  425. /**
  426. *@param mixed $regAdminId
  427. * @return MerchantEntity
  428. */
  429. public function setRegAdminId($regAdminId): MerchantEntity
  430. {
  431. $this->regAdminId = $regAdminId;
  432. return $this;
  433. }
  434. /**
  435. *@return mixed
  436. */
  437. public function getSort()
  438. {
  439. return $this->sort;
  440. }
  441. /**
  442. *@param mixed $sort
  443. * @return MerchantEntity
  444. */
  445. public function setSort($sort): MerchantEntity
  446. {
  447. $this->sort = $sort;
  448. return $this;
  449. }
  450. /**
  451. *@return mixed
  452. */
  453. public function getStatus()
  454. {
  455. return $this->status;
  456. }
  457. /**
  458. *@param mixed $status
  459. * @return MerchantEntity
  460. */
  461. public function setStatus($status): MerchantEntity
  462. {
  463. $this->status = $status;
  464. return $this;
  465. }
  466. /**
  467. *@return mixed
  468. */
  469. public function getCommissionRate()
  470. {
  471. return $this->commissionRate;
  472. }
  473. /**
  474. *@param mixed $commissionRate
  475. * @return MerchantEntity
  476. */
  477. public function setCommissionRate($commissionRate): MerchantEntity
  478. {
  479. $this->commissionRate = $commissionRate;
  480. return $this;
  481. }
  482. /**
  483. *@return mixed
  484. */
  485. public function getIsDel()
  486. {
  487. return $this->isDel;
  488. }
  489. /**
  490. *@param mixed $isDel
  491. * @return MerchantEntity
  492. */
  493. public function setIsDel($isDel): MerchantEntity
  494. {
  495. $this->isDel = $isDel;
  496. return $this;
  497. }
  498. /**
  499. *@return mixed
  500. */
  501. public function getIsAudit()
  502. {
  503. return $this->isAudit;
  504. }
  505. /**
  506. *@param mixed $isAudit
  507. * @return MerchantEntity
  508. */
  509. public function setIsAudit($isAudit): MerchantEntity
  510. {
  511. $this->isAudit = $isAudit;
  512. return $this;
  513. }
  514. /**
  515. *@return mixed
  516. */
  517. public function getIsBroRoom()
  518. {
  519. return $this->isBroRoom;
  520. }
  521. /**
  522. *@param mixed $isBroRoom
  523. * @return MerchantEntity
  524. */
  525. public function setIsBroRoom($isBroRoom): MerchantEntity
  526. {
  527. $this->isBroRoom = $isBroRoom;
  528. return $this;
  529. }
  530. /**
  531. *@return mixed
  532. */
  533. public function getIsBroGoods()
  534. {
  535. return $this->isBroGoods;
  536. }
  537. /**
  538. *@param mixed $isBroGoods
  539. * @return MerchantEntity
  540. */
  541. public function setIsBroGoods($isBroGoods): MerchantEntity
  542. {
  543. $this->isBroGoods = $isBroGoods;
  544. return $this;
  545. }
  546. /**
  547. *@return mixed
  548. */
  549. public function getIsBest()
  550. {
  551. return $this->isBest;
  552. }
  553. /**
  554. *@param mixed $isBest
  555. * @return MerchantEntity
  556. */
  557. public function setIsBest($isBest): MerchantEntity
  558. {
  559. $this->isBest = $isBest;
  560. return $this;
  561. }
  562. /**
  563. *@return mixed
  564. */
  565. public function getMerState()
  566. {
  567. return $this->merState;
  568. }
  569. /**
  570. *@param mixed $merState
  571. * @return MerchantEntity
  572. */
  573. public function setMerState($merState): MerchantEntity
  574. {
  575. $this->merState = $merState;
  576. return $this;
  577. }
  578. /**
  579. *@return mixed
  580. */
  581. public function getMerInfo()
  582. {
  583. return $this->merInfo;
  584. }
  585. /**
  586. *@param mixed $merInfo
  587. * @return MerchantEntity
  588. */
  589. public function setMerInfo($merInfo): MerchantEntity
  590. {
  591. $this->merInfo = $merInfo;
  592. return $this;
  593. }
  594. /**
  595. *@return mixed
  596. */
  597. public function getServicePhone()
  598. {
  599. return $this->servicePhone;
  600. }
  601. /**
  602. *@param mixed $servicePhone
  603. * @return MerchantEntity
  604. */
  605. public function setServicePhone($servicePhone): MerchantEntity
  606. {
  607. $this->servicePhone = $servicePhone;
  608. return $this;
  609. }
  610. /**
  611. *@return mixed
  612. */
  613. public function getCreateTime()
  614. {
  615. return $this->createTime;
  616. }
  617. /**
  618. *@param mixed $createTime
  619. * @return MerchantEntity
  620. */
  621. public function setCreateTime($createTime): MerchantEntity
  622. {
  623. $this->createTime = $createTime;
  624. return $this;
  625. }
  626. /**
  627. *@return mixed
  628. */
  629. public function getUpdateTime()
  630. {
  631. return $this->updateTime;
  632. }
  633. /**
  634. *@param mixed $updateTime
  635. * @return MerchantEntity
  636. */
  637. public function setUpdateTime($updateTime): MerchantEntity
  638. {
  639. $this->updateTime = $updateTime;
  640. return $this;
  641. }
  642. /**
  643. *@return mixed
  644. */
  645. public function getCareCount()
  646. {
  647. return $this->careCount;
  648. }
  649. /**
  650. *@param mixed $careCount
  651. * @return MerchantEntity
  652. */
  653. public function setCareCount($careCount): MerchantEntity
  654. {
  655. $this->careCount = $careCount;
  656. return $this;
  657. }
  658. /**
  659. *@return mixed
  660. */
  661. public function getCopyProductNum()
  662. {
  663. return $this->copyProductNum;
  664. }
  665. /**
  666. *@param mixed $copyProductNum
  667. * @return MerchantEntity
  668. */
  669. public function setCopyProductNum($copyProductNum): MerchantEntity
  670. {
  671. $this->copyProductNum = $copyProductNum;
  672. return $this;
  673. }
  674. /**
  675. *@return mixed
  676. */
  677. public function getLat()
  678. {
  679. return $this->lat;
  680. }
  681. /**
  682. *@param mixed $lat
  683. * @return MerchantEntity
  684. */
  685. public function setLat($lat): MerchantEntity
  686. {
  687. $this->lat = $lat;
  688. return $this;
  689. }
  690. /**
  691. *@return mixed
  692. */
  693. public function getLng()
  694. {
  695. return $this->lng;
  696. }
  697. /**
  698. *@param mixed $lng
  699. * @return MerchantEntity
  700. */
  701. public function setLng($lng): MerchantEntity
  702. {
  703. $this->lng = $lng;
  704. return $this;
  705. }
  706. /**
  707. *@return mixed
  708. */
  709. public function getDoorhead()
  710. {
  711. return $this->doorhead;
  712. }
  713. /**
  714. *@param mixed $doorhead
  715. * @return MerchantEntity
  716. */
  717. public function setDoorhead($doorhead): MerchantEntity
  718. {
  719. $this->doorhead = $doorhead;
  720. return $this;
  721. }
  722. /**
  723. *@return mixed
  724. */
  725. public function getAddr()
  726. {
  727. return $this->addr;
  728. }
  729. /**
  730. *@param mixed $addr
  731. * @return MerchantEntity
  732. */
  733. public function setAddr($addr): MerchantEntity
  734. {
  735. $this->addr = $addr;
  736. return $this;
  737. }
  738. /**
  739. *@return mixed
  740. */
  741. public function getHouseNumber()
  742. {
  743. return $this->houseNumber;
  744. }
  745. /**
  746. *@param mixed $houseNumber
  747. * @return MerchantEntity
  748. */
  749. public function setHouseNumber($houseNumber): MerchantEntity
  750. {
  751. $this->houseNumber = $houseNumber;
  752. return $this;
  753. }
  754. /**
  755. *@return mixed
  756. */
  757. public function getBusinessLicense()
  758. {
  759. return $this->businessLicense;
  760. }
  761. /**
  762. *@param mixed $businessLicense
  763. * @return MerchantEntity
  764. */
  765. public function setBusinessLicense($businessLicense): MerchantEntity
  766. {
  767. $this->businessLicense = $businessLicense;
  768. return $this;
  769. }
  770. /**
  771. *@return mixed
  772. */
  773. public function getRecommender()
  774. {
  775. return $this->recommender;
  776. }
  777. /**
  778. *@param mixed $recommender
  779. * @return MerchantEntity
  780. */
  781. public function setRecommender($recommender): MerchantEntity
  782. {
  783. $this->recommender = $recommender;
  784. return $this;
  785. }
  786. /**
  787. *@return mixed
  788. */
  789. public function getContentPic()
  790. {
  791. return $this->contentPic;
  792. }
  793. /**
  794. *@param mixed $contentPic
  795. * @return MerchantEntity
  796. */
  797. public function setContentPic($contentPic): MerchantEntity
  798. {
  799. $this->contentPic = $contentPic;
  800. return $this;
  801. }
  802. /**
  803. *@return mixed
  804. */
  805. public function getCardPositivePerson()
  806. {
  807. return $this->cardPositivePerson;
  808. }
  809. /**
  810. *@param mixed $cardPositivePerson
  811. * @return MerchantEntity
  812. */
  813. public function setCardPositivePerson($cardPositivePerson): MerchantEntity
  814. {
  815. $this->cardPositivePerson = $cardPositivePerson;
  816. return $this;
  817. }
  818. /**
  819. *@return mixed
  820. */
  821. public function getCardBackPerson()
  822. {
  823. return $this->cardBackPerson;
  824. }
  825. /**
  826. *@param mixed $cardBackPerson
  827. * @return MerchantEntity
  828. */
  829. public function setCardBackPerson($cardBackPerson): MerchantEntity
  830. {
  831. $this->cardBackPerson = $cardBackPerson;
  832. return $this;
  833. }
  834. /**
  835. *@return mixed
  836. */
  837. public function getEmail()
  838. {
  839. return $this->email;
  840. }
  841. /**
  842. *@param mixed $email
  843. * @return MerchantEntity
  844. */
  845. public function setEmail($email): MerchantEntity
  846. {
  847. $this->email = $email;
  848. return $this;
  849. }
  850. /**
  851. *@return mixed
  852. */
  853. public function getBankAccount()
  854. {
  855. return $this->bankAccount;
  856. }
  857. /**
  858. *@param mixed $bankAccount
  859. * @return MerchantEntity
  860. */
  861. public function setBankAccount($bankAccount): MerchantEntity
  862. {
  863. $this->bankAccount = $bankAccount;
  864. return $this;
  865. }
  866. /**
  867. *@return mixed
  868. */
  869. public function getBankLocation()
  870. {
  871. return $this->bankLocation;
  872. }
  873. /**
  874. *@param mixed $bankLocation
  875. * @return MerchantEntity
  876. */
  877. public function setBankLocation($bankLocation): MerchantEntity
  878. {
  879. $this->bankLocation = $bankLocation;
  880. return $this;
  881. }
  882. /**
  883. *@return mixed
  884. */
  885. public function getBankDeposit()
  886. {
  887. return $this->bankDeposit;
  888. }
  889. /**
  890. *@param mixed $bankDeposit
  891. * @return MerchantEntity
  892. */
  893. public function setBankDeposit($bankDeposit): MerchantEntity
  894. {
  895. $this->bankDeposit = $bankDeposit;
  896. return $this;
  897. }
  898. /**
  899. *@return mixed
  900. */
  901. public function getBankBranch()
  902. {
  903. return $this->bankBranch;
  904. }
  905. /**
  906. *@param mixed $bankBranch
  907. * @return MerchantEntity
  908. */
  909. public function setBankBranch($bankBranch): MerchantEntity
  910. {
  911. $this->bankBranch = $bankBranch;
  912. return $this;
  913. }
  914. /**
  915. *@return mixed
  916. */
  917. public function getOpenAccount()
  918. {
  919. return $this->openAccount;
  920. }
  921. /**
  922. *@param mixed $openAccount
  923. * @return MerchantEntity
  924. */
  925. public function setOpenAccount($openAccount): MerchantEntity
  926. {
  927. $this->openAccount = $openAccount;
  928. return $this;
  929. }
  930. /**
  931. *@return mixed
  932. */
  933. public function getLogo()
  934. {
  935. return $this->logo;
  936. }
  937. /**
  938. *@param mixed $logo
  939. * @return MerchantEntity
  940. */
  941. public function setLogo($logo): MerchantEntity
  942. {
  943. $this->logo = $logo;
  944. return $this;
  945. }
  946. /**
  947. *@return mixed
  948. */
  949. public function getBusinessAddr()
  950. {
  951. return $this->businessAddr;
  952. }
  953. /**
  954. *@param mixed $businessAddr
  955. * @return MerchantEntity
  956. */
  957. public function setBusinessAddr($businessAddr): MerchantEntity
  958. {
  959. $this->businessAddr = $businessAddr;
  960. return $this;
  961. }
  962. /**
  963. *@return mixed
  964. */
  965. public function getDistrictAddr()
  966. {
  967. return $this->districtAddr;
  968. }
  969. /**
  970. *@param mixed $districtAddr
  971. * @return MerchantEntity
  972. */
  973. public function setDistrictAddr($districtAddr): MerchantEntity
  974. {
  975. $this->districtAddr = $districtAddr;
  976. return $this;
  977. }
  978. /**
  979. *@return mixed
  980. */
  981. public function getType()
  982. {
  983. return $this->type;
  984. }
  985. /**
  986. *@param mixed $type
  987. * @return MerchantEntity
  988. */
  989. public function setType($type): MerchantEntity
  990. {
  991. $this->type = $type;
  992. return $this;
  993. }
  994. /**
  995. *@return mixed
  996. */
  997. public function getProvinceId()
  998. {
  999. return $this->provinceId;
  1000. }
  1001. /**
  1002. *@param mixed $provinceId
  1003. * @return MerchantEntity
  1004. */
  1005. public function setProvinceId($provinceId): MerchantEntity
  1006. {
  1007. $this->provinceId = $provinceId;
  1008. return $this;
  1009. }
  1010. /**
  1011. *@return mixed
  1012. */
  1013. public function getCityId()
  1014. {
  1015. return $this->cityId;
  1016. }
  1017. /**
  1018. *@param mixed $cityId
  1019. * @return MerchantEntity
  1020. */
  1021. public function setCityId($cityId): MerchantEntity
  1022. {
  1023. $this->cityId = $cityId;
  1024. return $this;
  1025. }
  1026. /**
  1027. *@return mixed
  1028. */
  1029. public function getAreaId()
  1030. {
  1031. return $this->areaId;
  1032. }
  1033. /**
  1034. *@param mixed $areaId
  1035. * @return MerchantEntity
  1036. */
  1037. public function setAreaId($areaId): MerchantEntity
  1038. {
  1039. $this->areaId = $areaId;
  1040. return $this;
  1041. }
  1042. /**
  1043. *@return mixed
  1044. */
  1045. public function getStreetId()
  1046. {
  1047. return $this->streetId;
  1048. }
  1049. /**
  1050. *@param mixed $streetId
  1051. * @return MerchantEntity
  1052. */
  1053. public function setStreetId($streetId): MerchantEntity
  1054. {
  1055. $this->streetId = $streetId;
  1056. return $this;
  1057. }
  1058. /**
  1059. *@return mixed
  1060. */
  1061. public function getBranch()
  1062. {
  1063. return $this->branch;
  1064. }
  1065. /**
  1066. *@param mixed $branch
  1067. * @return MerchantEntity
  1068. */
  1069. public function setBranch($branch): MerchantEntity
  1070. {
  1071. $this->branch = $branch;
  1072. return $this;
  1073. }
  1074. /**
  1075. *@return mixed
  1076. */
  1077. public function getBusinessId()
  1078. {
  1079. return $this->businessId;
  1080. }
  1081. /**
  1082. *@param mixed $businessId
  1083. * @return MerchantEntity
  1084. */
  1085. public function setBusinessId($businessId): MerchantEntity
  1086. {
  1087. $this->businessId = $businessId;
  1088. return $this;
  1089. }
  1090. /**
  1091. *@return mixed
  1092. */
  1093. public function getRequestId()
  1094. {
  1095. return $this->requestId;
  1096. }
  1097. /**
  1098. *@param mixed $requestId
  1099. * @return MerchantEntity
  1100. */
  1101. public function setRequestId($requestId): MerchantEntity
  1102. {
  1103. $this->requestId = $requestId;
  1104. return $this;
  1105. }
  1106. /**
  1107. *@return mixed
  1108. */
  1109. public function getRenqizhi()
  1110. {
  1111. return $this->renqizhi;
  1112. }
  1113. /**
  1114. *@param mixed $renqizhi
  1115. * @return MerchantEntity
  1116. */
  1117. public function setRenqizhi($renqizhi): MerchantEntity
  1118. {
  1119. $this->renqizhi = $renqizhi;
  1120. return $this;
  1121. }
  1122. /**
  1123. *@return mixed
  1124. */
  1125. public function getWithdrawalSetting()
  1126. {
  1127. return $this->withdrawalSetting;
  1128. }
  1129. /**
  1130. *@param mixed $withdrawalSetting
  1131. * @return MerchantEntity
  1132. */
  1133. public function setWithdrawalSetting($withdrawalSetting): MerchantEntity
  1134. {
  1135. $this->withdrawalSetting = $withdrawalSetting;
  1136. return $this;
  1137. }
  1138. /**
  1139. *@return mixed
  1140. */
  1141. public function getHaikeMp()
  1142. {
  1143. return $this->haikeMp;
  1144. }
  1145. /**
  1146. *@param mixed $haikeMp
  1147. * @return MerchantEntity
  1148. */
  1149. public function setHaikeMp($haikeMp): MerchantEntity
  1150. {
  1151. $this->haikeMp = $haikeMp;
  1152. return $this;
  1153. }
  1154. /**
  1155. *@return mixed
  1156. */
  1157. public function getMemberNo()
  1158. {
  1159. return $this->memberNo;
  1160. }
  1161. /**
  1162. *@param mixed $memberNo
  1163. * @return MerchantEntity
  1164. */
  1165. public function setMemberNo($memberNo): MerchantEntity
  1166. {
  1167. $this->memberNo = $memberNo;
  1168. return $this;
  1169. }
  1170. /**
  1171. *@return mixed
  1172. */
  1173. public function getSxySubmerchantId()
  1174. {
  1175. return $this->sxySubmerchantId;
  1176. }
  1177. /**
  1178. *@param mixed $sxySubmerchantId
  1179. * @return MerchantEntity
  1180. */
  1181. public function setSxySubmerchantId($sxySubmerchantId): MerchantEntity
  1182. {
  1183. $this->sxySubmerchantId = $sxySubmerchantId;
  1184. return $this;
  1185. }
  1186. /**
  1187. *@return mixed
  1188. */
  1189. public function getBuyTime()
  1190. {
  1191. return $this->buyTime;
  1192. }
  1193. /**
  1194. *@param mixed $buyTime
  1195. * @return MerchantEntity
  1196. */
  1197. public function setBuyTime($buyTime): MerchantEntity
  1198. {
  1199. $this->buyTime = $buyTime;
  1200. return $this;
  1201. }
  1202. /**
  1203. *@return mixed
  1204. */
  1205. public function getTzMoney()
  1206. {
  1207. return $this->tzMoney;
  1208. }
  1209. /**
  1210. *@param mixed $tzMoney
  1211. * @return MerchantEntity
  1212. */
  1213. public function setTzMoney($tzMoney): MerchantEntity
  1214. {
  1215. $this->tzMoney = $tzMoney;
  1216. return $this;
  1217. }
  1218. /**
  1219. *@return mixed
  1220. */
  1221. public function getTzIntegral()
  1222. {
  1223. return $this->tzIntegral;
  1224. }
  1225. /**
  1226. *@param mixed $tzIntegral
  1227. * @return MerchantEntity
  1228. */
  1229. public function setTzIntegral($tzIntegral): MerchantEntity
  1230. {
  1231. $this->tzIntegral = $tzIntegral;
  1232. return $this;
  1233. }
  1234. /**
  1235. *@return mixed
  1236. */
  1237. public function getHfStatus()
  1238. {
  1239. return $this->hfStatus;
  1240. }
  1241. /**
  1242. *@param mixed $hfStatus
  1243. * @return MerchantEntity
  1244. */
  1245. public function setHfStatus($hfStatus): MerchantEntity
  1246. {
  1247. $this->hfStatus = $hfStatus;
  1248. return $this;
  1249. }
  1250. /**
  1251. *@return mixed
  1252. */
  1253. public function getHfMemberId()
  1254. {
  1255. return $this->hfMemberId;
  1256. }
  1257. /**
  1258. *@param mixed $hfMemberId
  1259. * @return MerchantEntity
  1260. */
  1261. public function setHfMemberId($hfMemberId): MerchantEntity
  1262. {
  1263. $this->hfMemberId = $hfMemberId;
  1264. return $this;
  1265. }
  1266. /**
  1267. *@return mixed
  1268. */
  1269. public function getHfMemberIdWx()
  1270. {
  1271. return $this->hfMemberIdWx;
  1272. }
  1273. /**
  1274. *@param mixed $hfMemberIdWx
  1275. * @return MerchantEntity
  1276. */
  1277. public function setHfMemberIdWx($hfMemberIdWx): MerchantEntity
  1278. {
  1279. $this->hfMemberIdWx = $hfMemberIdWx;
  1280. return $this;
  1281. }
  1282. /**
  1283. *@return mixed
  1284. */
  1285. public function getHfMsg()
  1286. {
  1287. return $this->hfMsg;
  1288. }
  1289. /**
  1290. *@param mixed $hfMsg
  1291. * @return MerchantEntity
  1292. */
  1293. public function setHfMsg($hfMsg): MerchantEntity
  1294. {
  1295. $this->hfMsg = $hfMsg;
  1296. return $this;
  1297. }
  1298. /**
  1299. *@return mixed
  1300. */
  1301. public function getMerchantType()
  1302. {
  1303. return $this->merchantType;
  1304. }
  1305. /**
  1306. *@param mixed $merchantType
  1307. * @return MerchantEntity
  1308. */
  1309. public function setMerchantType($merchantType): MerchantEntity
  1310. {
  1311. $this->merchantType = $merchantType;
  1312. return $this;
  1313. }
  1314. /**
  1315. *@return mixed
  1316. */
  1317. public function getHfType()
  1318. {
  1319. return $this->hfType;
  1320. }
  1321. /**
  1322. *@param mixed $hfType
  1323. * @return MerchantEntity
  1324. */
  1325. public function setHfType($hfType): MerchantEntity
  1326. {
  1327. $this->hfType = $hfType;
  1328. return $this;
  1329. }
  1330. /**
  1331. *@return mixed
  1332. */
  1333. public function getExpireTime()
  1334. {
  1335. return $this->expireTime;
  1336. }
  1337. /**
  1338. *@param mixed $expireTime
  1339. * @return MerchantEntity
  1340. */
  1341. public function setExpireTime($expireTime): MerchantEntity
  1342. {
  1343. $this->expireTime = $expireTime;
  1344. return $this;
  1345. }
  1346. /**
  1347. *@return mixed
  1348. */
  1349. public function getHfDimensionIdWx()
  1350. {
  1351. return $this->hfDimensionIdWx;
  1352. }
  1353. /**
  1354. *@param mixed $hfDimensionIdWx
  1355. * @return MerchantEntity
  1356. */
  1357. public function setHfDimensionIdWx($hfDimensionIdWx): MerchantEntity
  1358. {
  1359. $this->hfDimensionIdWx = $hfDimensionIdWx;
  1360. return $this;
  1361. }
  1362. /**
  1363. *@return mixed
  1364. */
  1365. public function getHfDimensionIdAl()
  1366. {
  1367. return $this->hfDimensionIdAl;
  1368. }
  1369. /**
  1370. *@param mixed $hfDimensionIdAl
  1371. * @return MerchantEntity
  1372. */
  1373. public function setHfDimensionIdAl($hfDimensionIdAl): MerchantEntity
  1374. {
  1375. $this->hfDimensionIdAl = $hfDimensionIdAl;
  1376. return $this;
  1377. }
  1378. /**
  1379. *@return mixed
  1380. */
  1381. public function getHfPingtaiIdAl()
  1382. {
  1383. return $this->hfPingtaiIdAl;
  1384. }
  1385. /**
  1386. *@param mixed $hfPingtaiIdAl
  1387. * @return MerchantEntity
  1388. */
  1389. public function setHfPingtaiIdAl($hfPingtaiIdAl): MerchantEntity
  1390. {
  1391. $this->hfPingtaiIdAl = $hfPingtaiIdAl;
  1392. return $this;
  1393. }
  1394. /**
  1395. *@return mixed
  1396. */
  1397. public function getHfPingtaiIdWx()
  1398. {
  1399. return $this->hfPingtaiIdWx;
  1400. }
  1401. /**
  1402. *@param mixed $hfPingtaiIdWx
  1403. * @return MerchantEntity
  1404. */
  1405. public function setHfPingtaiIdWx($hfPingtaiIdWx): MerchantEntity
  1406. {
  1407. $this->hfPingtaiIdWx = $hfPingtaiIdWx;
  1408. return $this;
  1409. }
  1410. /**
  1411. *@return mixed
  1412. */
  1413. public function getDcId()
  1414. {
  1415. return $this->dcId;
  1416. }
  1417. /**
  1418. *@param mixed $dcId
  1419. * @return MerchantEntity
  1420. */
  1421. public function setDcId($dcId): MerchantEntity
  1422. {
  1423. $this->dcId = $dcId;
  1424. return $this;
  1425. }
  1426. /**
  1427. *@return mixed
  1428. */
  1429. public function getConsumptionScore()
  1430. {
  1431. return $this->consumptionScore;
  1432. }
  1433. /**
  1434. *@param mixed $consumptionScore
  1435. * @return MerchantEntity
  1436. */
  1437. public function setConsumptionScore($consumptionScore): MerchantEntity
  1438. {
  1439. $this->consumptionScore = $consumptionScore;
  1440. return $this;
  1441. }
  1442. /**
  1443. *@return mixed
  1444. */
  1445. public function getBrokeragePrice()
  1446. {
  1447. return $this->brokeragePrice;
  1448. }
  1449. /**
  1450. *@param mixed $brokeragePrice
  1451. * @return MerchantEntity
  1452. */
  1453. public function setBrokeragePrice($brokeragePrice): MerchantEntity
  1454. {
  1455. $this->brokeragePrice = $brokeragePrice;
  1456. return $this;
  1457. }
  1458. /**
  1459. *@return mixed
  1460. */
  1461. public function getScore()
  1462. {
  1463. return $this->score;
  1464. }
  1465. /**
  1466. *@param mixed $score
  1467. * @return MerchantEntity
  1468. */
  1469. public function setScore($score): MerchantEntity
  1470. {
  1471. $this->score = $score;
  1472. return $this;
  1473. }
  1474. /**
  1475. *@return mixed
  1476. */
  1477. public function getMerchantLevel()
  1478. {
  1479. return $this->merchantLevel;
  1480. }
  1481. /**
  1482. *@param mixed $merchantLevel
  1483. * @return MerchantEntity
  1484. */
  1485. public function setMerchantLevel($merchantLevel): MerchantEntity
  1486. {
  1487. $this->merchantLevel = $merchantLevel;
  1488. return $this;
  1489. }
  1490. /**
  1491. *@return mixed
  1492. */
  1493. public function getIsExperience()
  1494. {
  1495. return $this->isExperience;
  1496. }
  1497. /**
  1498. *@param mixed $isExperience
  1499. * @return MerchantEntity
  1500. */
  1501. public function setIsExperience($isExperience): MerchantEntity
  1502. {
  1503. $this->isExperience = $isExperience;
  1504. return $this;
  1505. }
  1506. /**
  1507. *@return mixed
  1508. */
  1509. public function getMerType()
  1510. {
  1511. return $this->merType;
  1512. }
  1513. /**
  1514. *@param mixed $merType
  1515. * @return MerchantEntity
  1516. */
  1517. public function setMerType($merType): MerchantEntity
  1518. {
  1519. $this->merType = $merType;
  1520. return $this;
  1521. }
  1522. /**
  1523. *@return mixed
  1524. */
  1525. public function getMerChain()
  1526. {
  1527. return $this->merChain;
  1528. }
  1529. /**
  1530. *@param mixed $merChain
  1531. * @return MerchantEntity
  1532. */
  1533. public function setMerChain($merChain): MerchantEntity
  1534. {
  1535. $this->merChain = $merChain;
  1536. return $this;
  1537. }
  1538. /**
  1539. *@return mixed
  1540. */
  1541. public function getBzj()
  1542. {
  1543. return $this->bzj;
  1544. }
  1545. /**
  1546. *@param mixed $bzj
  1547. * @return MerchantEntity
  1548. */
  1549. public function setBzj($bzj): MerchantEntity
  1550. {
  1551. $this->bzj = $bzj;
  1552. return $this;
  1553. }
  1554. /**
  1555. *@return mixed
  1556. */
  1557. public function getGoldenBeans()
  1558. {
  1559. return $this->goldenBeans;
  1560. }
  1561. /**
  1562. *@param mixed $goldenBeans
  1563. * @return MerchantEntity
  1564. */
  1565. public function setGoldenBeans($goldenBeans): MerchantEntity
  1566. {
  1567. $this->goldenBeans = $goldenBeans;
  1568. return $this;
  1569. }
  1570. }