StoreOrderEntity.php 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785
  1. <?php
  2. namespace app\entity\data\store;
  3. use app\common\enum\store\StoreOrderEnum;
  4. use app\entity\data\DataEntity;
  5. use app\entity\monomer\store\FzonePayTypeEntity;
  6. class StoreOrderEntity extends DataEntity
  7. {
  8. public $orderId = null; // 订单ID
  9. public $groupOrderId = null; // 订单组 id
  10. public $orderSn = null; // 订单号
  11. public $uid = null; // 用户id
  12. public $realName = null; // 用户姓名
  13. public $userPhone = null; // 用户电话
  14. public $userAddress = null; // 详细地址
  15. public $userAddressIds = null; // 详细地址id
  16. public $areaManageAddressIds = null; // 申请代理地址 只有合伙人商品有
  17. public $cartId = null; // 购物车id
  18. public $totalNum = null; // 订单商品总数
  19. public $totalPrice = null; // 订单总价
  20. public $totalPostage = null; // 邮费
  21. public $payPrice = null; // 实际支付金额
  22. public $payPostage = null; // 支付邮费
  23. public $extensionOne = null; // 一级佣金
  24. public $extensionTwo = null; // 二级佣金
  25. public $commissionRate = null; // 平台手续费(汇付通道服务费)
  26. public $couponId = null; // 优惠券id
  27. public $couponPrice = null; // 优惠券金额
  28. public $orderType = null; // 0普通1自提
  29. public $paid = null; // 支付状态
  30. public $payTime = null; // 支付时间
  31. public $payType = null; // 支付方式 0余额 1微信 2小程序 4支付宝 5特殊商户积分
  32. public $createTime = null; // 创建时间
  33. public $isIndependentaccount = null; // 是否分账:0:否,1:是
  34. public $status = null; // 订单状态(0:待发货;1:待收货;2:待评价;3:已完成;4已申请退款;-1:已退款)5未支付 6已取消
  35. public $deliveryType = null; // 发货类型(1:发货 2: 送货 3: 虚拟)
  36. public $deliveryName = null; // 快递名称/送货人姓名
  37. public $deliveryId = null; // 快递单号/手机号
  38. public $mark = null; // 备注
  39. public $remark = null; // 管理员备注
  40. public $adminMark = null; // 总后台备注
  41. public $verifyCode = null; // 核销码
  42. public $verifyTime = null; // 核销时间
  43. public $verifyServiceId = null; // 核销客服 id
  44. public $merId = null; // 商户ID
  45. public $reconciliationId = null; // 对账id
  46. public $cost = null; // 成本价
  47. public $isDel = null; // 是否删除
  48. public $isSystemDel = null; // 后台是否删除
  49. public $remind = null; // 提醒标识
  50. public $remindTime = null; // 提醒时间
  51. public $gzc = null; // 是否记录公证处入账明细
  52. public $tradeNo = null; // SaaS平台的交易订单编号
  53. public $channelTradeNo = null; // 渠道商订单号
  54. public $alipayNo = null; // 支付宝单号
  55. public $weixinNo = null; // 微信单号
  56. public $tableId = null; // 表 ID
  57. public $merMoney = null; // 商户可收金额
  58. public $lastStatus = null; // 上次订单状态 用于拒绝退款
  59. public $shareId = null; // 分享的ID
  60. public $payMerId = null; // 积分支付用的商户ID
  61. public $isSplitToTomorrow = null; // 是否分账
  62. public $serviceMoney = null; // 分给平台的钱
  63. public $testOrder = null; // 是否是测试订单
  64. public $dacangId = null; // 大仓ID
  65. public $distributionMode = null; // 发货模式 1快递 2 自提
  66. public $daCangProfit = null; // 大仓利润
  67. public $recommendedMerchants = null; // 推荐商家流水返佣
  68. public $merFanyong = null; // 可分总佣金
  69. public $isDacang = null; // 是否大仓订单
  70. public $costPrice = null; // 成本价
  71. public $douhuomall = null; // 是否供应链订单
  72. public $douhuomallStatus = null; // 供应链订单状态
  73. public $douhuomallMsg = null; // 供应链订单返回结果
  74. public $addressId = null; // 供应链需要的地址id
  75. public $douhuomallOrderNo = null; // 供应链订单号
  76. public $supplyType = null; // 状态 0:待审核 -1:审核未通过 1:待退货 2:待收货 3:已退款
  77. public $seckill = null; // 是否秒杀订单
  78. public $glj = null; // 管理奖是否结算
  79. public $exchangePhone = null; // 兑换手机号
  80. public $youhuiPrice = null; // 随机减金额
  81. public $isRedYlj = null; // 红积分订单的养老金状态
  82. public $hfFeeAmt = null; // 汇付通道服务费
  83. public $hfClearTime = null; // 汇付分账成功时间
  84. public $payOpenId = null; // 支付人openid
  85. public $isDayPay = null; // 是否代付订单
  86. public $isSettlement = null; // 是否已结算
  87. public $settlementTime = null; // 结算时间
  88. public $shareUid = null; // 分享用户uid
  89. public $conPri = null; // 利润
  90. public $userOfGoodsId = null; // 会员区需要升级权限加上ID
  91. public $fzonePaytype = null; // 组合支付
  92. public $fzonePayJingdou = null; // 组合支付京豆
  93. public $fzonePayVr = null; // 组合支付vr
  94. public $fzonePayJifen = null; // 组合支付积分
  95. public $fzonePayPrice = null; // 组合支付现金
  96. public $fzonePayOther = null; // 组合支付other
  97. public $fzonePayNote = null; // 组合支付备注
  98. public $fzonePayType = null;
  99. /**
  100. * @return mixed
  101. */
  102. public function getOrderId()
  103. {
  104. return $this->orderId;
  105. }
  106. /**
  107. * @param mixed $orderId
  108. * @return StoreOrderEntity
  109. */
  110. public function setOrderId($orderId): StoreOrderEntity
  111. {
  112. $this->orderId = $orderId;
  113. return $this;
  114. }
  115. /**
  116. * @return mixed
  117. */
  118. public function getGroupOrderId()
  119. {
  120. return $this->groupOrderId;
  121. }
  122. /**
  123. * @param mixed $groupOrderId
  124. * @return StoreOrderEntity
  125. */
  126. public function setGroupOrderId($groupOrderId): StoreOrderEntity
  127. {
  128. $this->groupOrderId = $groupOrderId;
  129. return $this;
  130. }
  131. /**
  132. * @return mixed
  133. */
  134. public function getOrderSn()
  135. {
  136. return $this->orderSn;
  137. }
  138. /**
  139. * @param mixed $orderSn
  140. * @return StoreOrderEntity
  141. */
  142. public function setOrderSn($orderSn): StoreOrderEntity
  143. {
  144. $this->orderSn = $orderSn;
  145. return $this;
  146. }
  147. /**
  148. * @return mixed
  149. */
  150. public function getUid()
  151. {
  152. return $this->uid;
  153. }
  154. /**
  155. * @param mixed $uid
  156. * @return StoreOrderEntity
  157. */
  158. public function setUid($uid): StoreOrderEntity
  159. {
  160. $this->uid = $uid;
  161. return $this;
  162. }
  163. /**
  164. * @return mixed
  165. */
  166. public function getRealName()
  167. {
  168. return $this->realName;
  169. }
  170. /**
  171. * @param mixed $realName
  172. * @return StoreOrderEntity
  173. */
  174. public function setRealName($realName): StoreOrderEntity
  175. {
  176. $this->realName = $realName;
  177. return $this;
  178. }
  179. /**
  180. * @return mixed
  181. */
  182. public function getUserPhone()
  183. {
  184. return $this->userPhone;
  185. }
  186. /**
  187. * @param mixed $userPhone
  188. * @return StoreOrderEntity
  189. */
  190. public function setUserPhone($userPhone): StoreOrderEntity
  191. {
  192. $this->userPhone = $userPhone;
  193. return $this;
  194. }
  195. /**
  196. * @return mixed
  197. */
  198. public function getUserAddress()
  199. {
  200. return $this->userAddress;
  201. }
  202. /**
  203. * @param mixed $userAddress
  204. * @return StoreOrderEntity
  205. */
  206. public function setUserAddress($userAddress): StoreOrderEntity
  207. {
  208. $this->userAddress = $userAddress;
  209. return $this;
  210. }
  211. /**
  212. * @return mixed
  213. */
  214. public function getUserAddressIds()
  215. {
  216. return $this->userAddressIds;
  217. }
  218. /**
  219. * @param mixed $userAddressIds
  220. * @return StoreOrderEntity
  221. */
  222. public function setUserAddressIds($userAddressIds): StoreOrderEntity
  223. {
  224. $this->userAddressIds = $userAddressIds;
  225. return $this;
  226. }
  227. /**
  228. * @return mixed
  229. */
  230. public function getAreaManageAddressIds()
  231. {
  232. return $this->areaManageAddressIds;
  233. }
  234. /**
  235. * @param mixed $areaManageAddressIds
  236. * @return StoreOrderEntity
  237. */
  238. public function setAreaManageAddressIds($areaManageAddressIds): StoreOrderEntity
  239. {
  240. $this->areaManageAddressIds = $areaManageAddressIds;
  241. return $this;
  242. }
  243. /**
  244. * @return mixed
  245. */
  246. public function getCartId()
  247. {
  248. return $this->cartId;
  249. }
  250. /**
  251. * @param mixed $cartId
  252. * @return StoreOrderEntity
  253. */
  254. public function setCartId($cartId): StoreOrderEntity
  255. {
  256. $this->cartId = $cartId;
  257. return $this;
  258. }
  259. /**
  260. * @return mixed
  261. */
  262. public function getTotalNum()
  263. {
  264. return $this->totalNum;
  265. }
  266. /**
  267. * @param mixed $totalNum
  268. * @return StoreOrderEntity
  269. */
  270. public function setTotalNum($totalNum): StoreOrderEntity
  271. {
  272. $this->totalNum = $totalNum;
  273. return $this;
  274. }
  275. /**
  276. * @return mixed
  277. */
  278. public function getTotalPrice()
  279. {
  280. return $this->totalPrice;
  281. }
  282. /**
  283. * @param mixed $totalPrice
  284. * @return StoreOrderEntity
  285. */
  286. public function setTotalPrice($totalPrice): StoreOrderEntity
  287. {
  288. $this->totalPrice = $totalPrice;
  289. return $this;
  290. }
  291. /**
  292. * @return mixed
  293. */
  294. public function getTotalPostage()
  295. {
  296. return $this->totalPostage;
  297. }
  298. /**
  299. * @param mixed $totalPostage
  300. * @return StoreOrderEntity
  301. */
  302. public function setTotalPostage($totalPostage): StoreOrderEntity
  303. {
  304. $this->totalPostage = $totalPostage;
  305. return $this;
  306. }
  307. /**
  308. * @return mixed
  309. */
  310. public function getPayPrice()
  311. {
  312. return $this->payPrice;
  313. }
  314. /**
  315. * @param mixed $payPrice
  316. * @return StoreOrderEntity
  317. */
  318. public function setPayPrice($payPrice): StoreOrderEntity
  319. {
  320. $this->payPrice = $payPrice;
  321. return $this;
  322. }
  323. /**
  324. * @return mixed
  325. */
  326. public function getPayPostage()
  327. {
  328. return $this->payPostage;
  329. }
  330. /**
  331. * @param mixed $payPostage
  332. * @return StoreOrderEntity
  333. */
  334. public function setPayPostage($payPostage): StoreOrderEntity
  335. {
  336. $this->payPostage = $payPostage;
  337. return $this;
  338. }
  339. /**
  340. * @return mixed
  341. */
  342. public function getExtensionOne()
  343. {
  344. return $this->extensionOne;
  345. }
  346. /**
  347. * @param mixed $extensionOne
  348. * @return StoreOrderEntity
  349. */
  350. public function setExtensionOne($extensionOne): StoreOrderEntity
  351. {
  352. $this->extensionOne = $extensionOne;
  353. return $this;
  354. }
  355. /**
  356. * @return mixed
  357. */
  358. public function getExtensionTwo()
  359. {
  360. return $this->extensionTwo;
  361. }
  362. /**
  363. * @param mixed $extensionTwo
  364. * @return StoreOrderEntity
  365. */
  366. public function setExtensionTwo($extensionTwo): StoreOrderEntity
  367. {
  368. $this->extensionTwo = $extensionTwo;
  369. return $this;
  370. }
  371. /**
  372. * @return mixed
  373. */
  374. public function getCommissionRate()
  375. {
  376. return $this->commissionRate;
  377. }
  378. /**
  379. * @param mixed $commissionRate
  380. * @return StoreOrderEntity
  381. */
  382. public function setCommissionRate($commissionRate): StoreOrderEntity
  383. {
  384. $this->commissionRate = $commissionRate;
  385. return $this;
  386. }
  387. /**
  388. * @return mixed
  389. */
  390. public function getCouponId()
  391. {
  392. return $this->couponId;
  393. }
  394. /**
  395. * @param mixed $couponId
  396. * @return StoreOrderEntity
  397. */
  398. public function setCouponId($couponId): StoreOrderEntity
  399. {
  400. $this->couponId = $couponId;
  401. return $this;
  402. }
  403. /**
  404. * @return mixed
  405. */
  406. public function getCouponPrice()
  407. {
  408. return $this->couponPrice;
  409. }
  410. /**
  411. * @param mixed $couponPrice
  412. * @return StoreOrderEntity
  413. */
  414. public function setCouponPrice($couponPrice): StoreOrderEntity
  415. {
  416. $this->couponPrice = $couponPrice;
  417. return $this;
  418. }
  419. /**
  420. * @return mixed
  421. */
  422. public function getOrderType()
  423. {
  424. return $this->orderType;
  425. }
  426. /**
  427. * @param mixed $orderType
  428. * @return StoreOrderEntity
  429. */
  430. public function setOrderType($orderType): StoreOrderEntity
  431. {
  432. $this->orderType = $orderType;
  433. return $this;
  434. }
  435. /**
  436. * @return mixed
  437. */
  438. public function getPaid()
  439. {
  440. return $this->paid;
  441. }
  442. /**
  443. * @param mixed $paid
  444. * @return StoreOrderEntity
  445. */
  446. public function setPaid($paid): StoreOrderEntity
  447. {
  448. $this->paid = $paid;
  449. return $this;
  450. }
  451. /**
  452. * @return mixed
  453. */
  454. public function getPayTime()
  455. {
  456. return $this->payTime;
  457. }
  458. /**
  459. * @param mixed $payTime
  460. * @return StoreOrderEntity
  461. */
  462. public function setPayTime($payTime): StoreOrderEntity
  463. {
  464. $this->payTime = $payTime;
  465. return $this;
  466. }
  467. /**
  468. * @return mixed
  469. */
  470. public function getPayType()
  471. {
  472. return $this->payType;
  473. }
  474. /**
  475. * @param mixed $payType
  476. * @return StoreOrderEntity
  477. */
  478. public function setPayType($payType): StoreOrderEntity
  479. {
  480. $this->payType = $payType;
  481. return $this;
  482. }
  483. /**
  484. * @return mixed
  485. */
  486. public function getCreateTime()
  487. {
  488. return $this->createTime;
  489. }
  490. /**
  491. * @param mixed $createTime
  492. * @return StoreOrderEntity
  493. */
  494. public function setCreateTime($createTime): StoreOrderEntity
  495. {
  496. $this->createTime = $createTime;
  497. return $this;
  498. }
  499. /**
  500. * @return mixed
  501. */
  502. public function getIsIndependentaccount()
  503. {
  504. return $this->isIndependentaccount;
  505. }
  506. /**
  507. * @param mixed $isIndependentaccount
  508. * @return StoreOrderEntity
  509. */
  510. public function setIsIndependentaccount($isIndependentaccount): StoreOrderEntity
  511. {
  512. $this->isIndependentaccount = $isIndependentaccount;
  513. return $this;
  514. }
  515. /**
  516. * @return mixed
  517. */
  518. public function getStatus()
  519. {
  520. return $this->status;
  521. }
  522. /**
  523. * @param mixed $status
  524. * @return StoreOrderEntity
  525. */
  526. public function setStatus($status): StoreOrderEntity
  527. {
  528. $this->status = $status;
  529. return $this;
  530. }
  531. /**
  532. * @return mixed
  533. */
  534. public function getDeliveryType()
  535. {
  536. return $this->deliveryType;
  537. }
  538. /**
  539. * @param mixed $deliveryType
  540. * @return StoreOrderEntity
  541. */
  542. public function setDeliveryType($deliveryType): StoreOrderEntity
  543. {
  544. $this->deliveryType = $deliveryType;
  545. return $this;
  546. }
  547. /**
  548. * @return mixed
  549. */
  550. public function getDeliveryName()
  551. {
  552. return $this->deliveryName;
  553. }
  554. /**
  555. * @param mixed $deliveryName
  556. * @return StoreOrderEntity
  557. */
  558. public function setDeliveryName($deliveryName): StoreOrderEntity
  559. {
  560. $this->deliveryName = $deliveryName;
  561. return $this;
  562. }
  563. /**
  564. * @return mixed
  565. */
  566. public function getDeliveryId()
  567. {
  568. return $this->deliveryId;
  569. }
  570. /**
  571. * @param mixed $deliveryId
  572. * @return StoreOrderEntity
  573. */
  574. public function setDeliveryId($deliveryId): StoreOrderEntity
  575. {
  576. $this->deliveryId = $deliveryId;
  577. return $this;
  578. }
  579. /**
  580. * @return mixed
  581. */
  582. public function getMark()
  583. {
  584. return $this->mark;
  585. }
  586. /**
  587. * @param mixed $mark
  588. * @return StoreOrderEntity
  589. */
  590. public function setMark($mark): StoreOrderEntity
  591. {
  592. $this->mark = $mark;
  593. return $this;
  594. }
  595. /**
  596. * @return mixed
  597. */
  598. public function getRemark()
  599. {
  600. return $this->remark;
  601. }
  602. /**
  603. * @param mixed $remark
  604. * @return StoreOrderEntity
  605. */
  606. public function setRemark($remark): StoreOrderEntity
  607. {
  608. $this->remark = $remark;
  609. return $this;
  610. }
  611. /**
  612. * @return mixed
  613. */
  614. public function getAdminMark()
  615. {
  616. return $this->adminMark;
  617. }
  618. /**
  619. * @param mixed $adminMark
  620. * @return StoreOrderEntity
  621. */
  622. public function setAdminMark($adminMark): StoreOrderEntity
  623. {
  624. $this->adminMark = $adminMark;
  625. return $this;
  626. }
  627. /**
  628. * @return mixed
  629. */
  630. public function getVerifyCode()
  631. {
  632. return $this->verifyCode;
  633. }
  634. /**
  635. * @param mixed $verifyCode
  636. * @return StoreOrderEntity
  637. */
  638. public function setVerifyCode($verifyCode): StoreOrderEntity
  639. {
  640. $this->verifyCode = $verifyCode;
  641. return $this;
  642. }
  643. /**
  644. * @return mixed
  645. */
  646. public function getVerifyTime()
  647. {
  648. return $this->verifyTime;
  649. }
  650. /**
  651. * @param mixed $verifyTime
  652. * @return StoreOrderEntity
  653. */
  654. public function setVerifyTime($verifyTime): StoreOrderEntity
  655. {
  656. $this->verifyTime = $verifyTime;
  657. return $this;
  658. }
  659. /**
  660. * @return mixed
  661. */
  662. public function getVerifyServiceId()
  663. {
  664. return $this->verifyServiceId;
  665. }
  666. /**
  667. * @param mixed $verifyServiceId
  668. * @return StoreOrderEntity
  669. */
  670. public function setVerifyServiceId($verifyServiceId): StoreOrderEntity
  671. {
  672. $this->verifyServiceId = $verifyServiceId;
  673. return $this;
  674. }
  675. /**
  676. * @return mixed
  677. */
  678. public function getMerId()
  679. {
  680. return $this->merId;
  681. }
  682. /**
  683. * @param mixed $merId
  684. * @return StoreOrderEntity
  685. */
  686. public function setMerId($merId): StoreOrderEntity
  687. {
  688. $this->merId = $merId;
  689. return $this;
  690. }
  691. /**
  692. * @return mixed
  693. */
  694. public function getReconciliationId()
  695. {
  696. return $this->reconciliationId;
  697. }
  698. /**
  699. * @param mixed $reconciliationId
  700. * @return StoreOrderEntity
  701. */
  702. public function setReconciliationId($reconciliationId): StoreOrderEntity
  703. {
  704. $this->reconciliationId = $reconciliationId;
  705. return $this;
  706. }
  707. /**
  708. * @return mixed
  709. */
  710. public function getCost()
  711. {
  712. return $this->cost;
  713. }
  714. /**
  715. * @param mixed $cost
  716. * @return StoreOrderEntity
  717. */
  718. public function setCost($cost): StoreOrderEntity
  719. {
  720. $this->cost = $cost;
  721. return $this;
  722. }
  723. /**
  724. * @return mixed
  725. */
  726. public function getIsDel()
  727. {
  728. return $this->isDel;
  729. }
  730. /**
  731. * @param mixed $isDel
  732. * @return StoreOrderEntity
  733. */
  734. public function setIsDel($isDel): StoreOrderEntity
  735. {
  736. $this->isDel = $isDel;
  737. return $this;
  738. }
  739. /**
  740. * @return mixed
  741. */
  742. public function getIsSystemDel()
  743. {
  744. return $this->isSystemDel;
  745. }
  746. /**
  747. * @param mixed $isSystemDel
  748. * @return StoreOrderEntity
  749. */
  750. public function setIsSystemDel($isSystemDel): StoreOrderEntity
  751. {
  752. $this->isSystemDel = $isSystemDel;
  753. return $this;
  754. }
  755. /**
  756. * @return mixed
  757. */
  758. public function getRemind()
  759. {
  760. return $this->remind;
  761. }
  762. /**
  763. * @param mixed $remind
  764. * @return StoreOrderEntity
  765. */
  766. public function setRemind($remind): StoreOrderEntity
  767. {
  768. $this->remind = $remind;
  769. return $this;
  770. }
  771. /**
  772. * @return mixed
  773. */
  774. public function getRemindTime()
  775. {
  776. return $this->remindTime;
  777. }
  778. /**
  779. * @param mixed $remindTime
  780. * @return StoreOrderEntity
  781. */
  782. public function setRemindTime($remindTime): StoreOrderEntity
  783. {
  784. $this->remindTime = $remindTime;
  785. return $this;
  786. }
  787. /**
  788. * @return mixed
  789. */
  790. public function getGzc()
  791. {
  792. return $this->gzc;
  793. }
  794. /**
  795. * @param mixed $gzc
  796. * @return StoreOrderEntity
  797. */
  798. public function setGzc($gzc): StoreOrderEntity
  799. {
  800. $this->gzc = $gzc;
  801. return $this;
  802. }
  803. /**
  804. * @return mixed
  805. */
  806. public function getTradeNo()
  807. {
  808. return $this->tradeNo;
  809. }
  810. /**
  811. * @param mixed $tradeNo
  812. * @return StoreOrderEntity
  813. */
  814. public function setTradeNo($tradeNo): StoreOrderEntity
  815. {
  816. $this->tradeNo = $tradeNo;
  817. return $this;
  818. }
  819. /**
  820. * @return mixed
  821. */
  822. public function getChannelTradeNo()
  823. {
  824. return $this->channelTradeNo;
  825. }
  826. /**
  827. * @param mixed $channelTradeNo
  828. * @return StoreOrderEntity
  829. */
  830. public function setChannelTradeNo($channelTradeNo): StoreOrderEntity
  831. {
  832. $this->channelTradeNo = $channelTradeNo;
  833. return $this;
  834. }
  835. /**
  836. * @return mixed
  837. */
  838. public function getAlipayNo()
  839. {
  840. return $this->alipayNo;
  841. }
  842. /**
  843. * @param mixed $alipayNo
  844. * @return StoreOrderEntity
  845. */
  846. public function setAlipayNo($alipayNo): StoreOrderEntity
  847. {
  848. $this->alipayNo = $alipayNo;
  849. return $this;
  850. }
  851. /**
  852. * @return mixed
  853. */
  854. public function getWeixinNo()
  855. {
  856. return $this->weixinNo;
  857. }
  858. /**
  859. * @param mixed $weixinNo
  860. * @return StoreOrderEntity
  861. */
  862. public function setWeixinNo($weixinNo): StoreOrderEntity
  863. {
  864. $this->weixinNo = $weixinNo;
  865. return $this;
  866. }
  867. /**
  868. * @return mixed
  869. */
  870. public function getTableId()
  871. {
  872. return $this->tableId;
  873. }
  874. /**
  875. * @param mixed $tableId
  876. * @return StoreOrderEntity
  877. */
  878. public function setTableId($tableId): StoreOrderEntity
  879. {
  880. $this->tableId = $tableId;
  881. return $this;
  882. }
  883. /**
  884. * @return mixed
  885. */
  886. public function getMerMoney()
  887. {
  888. return $this->merMoney;
  889. }
  890. /**
  891. * @param mixed $merMoney
  892. * @return StoreOrderEntity
  893. */
  894. public function setMerMoney($merMoney): StoreOrderEntity
  895. {
  896. $this->merMoney = $merMoney;
  897. return $this;
  898. }
  899. /**
  900. * @return mixed
  901. */
  902. public function getLastStatus()
  903. {
  904. return $this->lastStatus;
  905. }
  906. /**
  907. * @param mixed $lastStatus
  908. * @return StoreOrderEntity
  909. */
  910. public function setLastStatus($lastStatus): StoreOrderEntity
  911. {
  912. $this->lastStatus = $lastStatus;
  913. return $this;
  914. }
  915. /**
  916. * @return mixed
  917. */
  918. public function getShareId()
  919. {
  920. return $this->shareId;
  921. }
  922. /**
  923. * @param mixed $shareId
  924. * @return StoreOrderEntity
  925. */
  926. public function setShareId($shareId): StoreOrderEntity
  927. {
  928. $this->shareId = $shareId;
  929. return $this;
  930. }
  931. /**
  932. * @return mixed
  933. */
  934. public function getPayMerId()
  935. {
  936. return $this->payMerId;
  937. }
  938. /**
  939. * @param mixed $payMerId
  940. * @return StoreOrderEntity
  941. */
  942. public function setPayMerId($payMerId): StoreOrderEntity
  943. {
  944. $this->payMerId = $payMerId;
  945. return $this;
  946. }
  947. /**
  948. * @return mixed
  949. */
  950. public function getIsSplitToTomorrow()
  951. {
  952. return $this->isSplitToTomorrow;
  953. }
  954. /**
  955. * @param mixed $isSplitToTomorrow
  956. * @return StoreOrderEntity
  957. */
  958. public function setIsSplitToTomorrow($isSplitToTomorrow): StoreOrderEntity
  959. {
  960. $this->isSplitToTomorrow = $isSplitToTomorrow;
  961. return $this;
  962. }
  963. /**
  964. * @return mixed
  965. */
  966. public function getServiceMoney()
  967. {
  968. return $this->serviceMoney;
  969. }
  970. /**
  971. * @param mixed $serviceMoney
  972. * @return StoreOrderEntity
  973. */
  974. public function setServiceMoney($serviceMoney): StoreOrderEntity
  975. {
  976. $this->serviceMoney = $serviceMoney;
  977. return $this;
  978. }
  979. /**
  980. * @return mixed
  981. */
  982. public function getTestOrder()
  983. {
  984. return $this->testOrder;
  985. }
  986. /**
  987. * @param mixed $testOrder
  988. * @return StoreOrderEntity
  989. */
  990. public function setTestOrder($testOrder): StoreOrderEntity
  991. {
  992. $this->testOrder = $testOrder;
  993. return $this;
  994. }
  995. /**
  996. * @return mixed
  997. */
  998. public function getDacangId()
  999. {
  1000. return $this->dacangId;
  1001. }
  1002. /**
  1003. * @param mixed $dacangId
  1004. * @return StoreOrderEntity
  1005. */
  1006. public function setDacangId($dacangId): StoreOrderEntity
  1007. {
  1008. $this->dacangId = $dacangId;
  1009. return $this;
  1010. }
  1011. /**
  1012. * @return mixed
  1013. */
  1014. public function getDistributionMode()
  1015. {
  1016. return $this->distributionMode;
  1017. }
  1018. /**
  1019. * @param mixed $distributionMode
  1020. * @return StoreOrderEntity
  1021. */
  1022. public function setDistributionMode($distributionMode): StoreOrderEntity
  1023. {
  1024. $this->distributionMode = $distributionMode;
  1025. return $this;
  1026. }
  1027. /**
  1028. * @return mixed
  1029. */
  1030. public function getDaCangProfit()
  1031. {
  1032. return $this->daCangProfit;
  1033. }
  1034. /**
  1035. * @param mixed $daCangProfit
  1036. * @return StoreOrderEntity
  1037. */
  1038. public function setDaCangProfit($daCangProfit): StoreOrderEntity
  1039. {
  1040. $this->daCangProfit = $daCangProfit;
  1041. return $this;
  1042. }
  1043. /**
  1044. * @return mixed
  1045. */
  1046. public function getRecommendedMerchants()
  1047. {
  1048. return $this->recommendedMerchants;
  1049. }
  1050. /**
  1051. * @param mixed $recommendedMerchants
  1052. * @return StoreOrderEntity
  1053. */
  1054. public function setRecommendedMerchants($recommendedMerchants): StoreOrderEntity
  1055. {
  1056. $this->recommendedMerchants = $recommendedMerchants;
  1057. return $this;
  1058. }
  1059. /**
  1060. * @return mixed
  1061. */
  1062. public function getMerFanyong()
  1063. {
  1064. return $this->merFanyong;
  1065. }
  1066. /**
  1067. * @param mixed $merFanyong
  1068. * @return StoreOrderEntity
  1069. */
  1070. public function setMerFanyong($merFanyong): StoreOrderEntity
  1071. {
  1072. $this->merFanyong = $merFanyong;
  1073. return $this;
  1074. }
  1075. /**
  1076. * @return mixed
  1077. */
  1078. public function getIsDacang()
  1079. {
  1080. return $this->isDacang;
  1081. }
  1082. /**
  1083. * @param mixed $isDacang
  1084. * @return StoreOrderEntity
  1085. */
  1086. public function setIsDacang($isDacang): StoreOrderEntity
  1087. {
  1088. $this->isDacang = $isDacang;
  1089. return $this;
  1090. }
  1091. /**
  1092. * @return mixed
  1093. */
  1094. public function getCostPrice()
  1095. {
  1096. return $this->costPrice;
  1097. }
  1098. /**
  1099. * @param mixed $costPrice
  1100. * @return StoreOrderEntity
  1101. */
  1102. public function setCostPrice($costPrice): StoreOrderEntity
  1103. {
  1104. $this->costPrice = $costPrice;
  1105. return $this;
  1106. }
  1107. /**
  1108. * @return mixed
  1109. */
  1110. public function getDouhuomall()
  1111. {
  1112. return $this->douhuomall;
  1113. }
  1114. /**
  1115. * @param mixed $douhuomall
  1116. * @return StoreOrderEntity
  1117. */
  1118. public function setDouhuomall($douhuomall): StoreOrderEntity
  1119. {
  1120. $this->douhuomall = $douhuomall;
  1121. return $this;
  1122. }
  1123. /**
  1124. * @return mixed
  1125. */
  1126. public function getDouhuomallStatus()
  1127. {
  1128. return $this->douhuomallStatus;
  1129. }
  1130. /**
  1131. * @param mixed $douhuomallStatus
  1132. * @return StoreOrderEntity
  1133. */
  1134. public function setDouhuomallStatus($douhuomallStatus): StoreOrderEntity
  1135. {
  1136. $this->douhuomallStatus = $douhuomallStatus;
  1137. return $this;
  1138. }
  1139. /**
  1140. * @return mixed
  1141. */
  1142. public function getDouhuomallMsg()
  1143. {
  1144. return $this->douhuomallMsg;
  1145. }
  1146. /**
  1147. * @param mixed $douhuomallMsg
  1148. * @return StoreOrderEntity
  1149. */
  1150. public function setDouhuomallMsg($douhuomallMsg): StoreOrderEntity
  1151. {
  1152. $this->douhuomallMsg = $douhuomallMsg;
  1153. return $this;
  1154. }
  1155. /**
  1156. * @return mixed
  1157. */
  1158. public function getAddressId()
  1159. {
  1160. return $this->addressId;
  1161. }
  1162. /**
  1163. * @param mixed $addressId
  1164. * @return StoreOrderEntity
  1165. */
  1166. public function setAddressId($addressId): StoreOrderEntity
  1167. {
  1168. $this->addressId = $addressId;
  1169. return $this;
  1170. }
  1171. /**
  1172. * @return mixed
  1173. */
  1174. public function getDouhuomallOrderNo()
  1175. {
  1176. return $this->douhuomallOrderNo;
  1177. }
  1178. /**
  1179. * @param mixed $douhuomallOrderNo
  1180. * @return StoreOrderEntity
  1181. */
  1182. public function setDouhuomallOrderNo($douhuomallOrderNo): StoreOrderEntity
  1183. {
  1184. $this->douhuomallOrderNo = $douhuomallOrderNo;
  1185. return $this;
  1186. }
  1187. /**
  1188. * @return mixed
  1189. */
  1190. public function getSupplyType()
  1191. {
  1192. return $this->supplyType;
  1193. }
  1194. /**
  1195. * @param mixed $supplyType
  1196. * @return StoreOrderEntity
  1197. */
  1198. public function setSupplyType($supplyType): StoreOrderEntity
  1199. {
  1200. $this->supplyType = $supplyType;
  1201. return $this;
  1202. }
  1203. /**
  1204. * @return mixed
  1205. */
  1206. public function getSeckill()
  1207. {
  1208. return $this->seckill;
  1209. }
  1210. /**
  1211. * @param mixed $seckill
  1212. * @return StoreOrderEntity
  1213. */
  1214. public function setSeckill($seckill): StoreOrderEntity
  1215. {
  1216. $this->seckill = $seckill;
  1217. return $this;
  1218. }
  1219. /**
  1220. * @return mixed
  1221. */
  1222. public function getGlj()
  1223. {
  1224. return $this->glj;
  1225. }
  1226. /**
  1227. * @param mixed $glj
  1228. * @return StoreOrderEntity
  1229. */
  1230. public function setGlj($glj): StoreOrderEntity
  1231. {
  1232. $this->glj = $glj;
  1233. return $this;
  1234. }
  1235. /**
  1236. * @return mixed
  1237. */
  1238. public function getExchangePhone()
  1239. {
  1240. return $this->exchangePhone;
  1241. }
  1242. /**
  1243. * @param mixed $exchangePhone
  1244. * @return StoreOrderEntity
  1245. */
  1246. public function setExchangePhone($exchangePhone): StoreOrderEntity
  1247. {
  1248. $this->exchangePhone = $exchangePhone;
  1249. return $this;
  1250. }
  1251. /**
  1252. * @return mixed
  1253. */
  1254. public function getYouhuiPrice()
  1255. {
  1256. return $this->youhuiPrice;
  1257. }
  1258. /**
  1259. * @param mixed $youhuiPrice
  1260. * @return StoreOrderEntity
  1261. */
  1262. public function setYouhuiPrice($youhuiPrice): StoreOrderEntity
  1263. {
  1264. $this->youhuiPrice = $youhuiPrice;
  1265. return $this;
  1266. }
  1267. /**
  1268. * @return mixed
  1269. */
  1270. public function getIsRedYlj()
  1271. {
  1272. return $this->isRedYlj;
  1273. }
  1274. /**
  1275. * @param mixed $isRedYlj
  1276. * @return StoreOrderEntity
  1277. */
  1278. public function setIsRedYlj($isRedYlj): StoreOrderEntity
  1279. {
  1280. $this->isRedYlj = $isRedYlj;
  1281. return $this;
  1282. }
  1283. /**
  1284. * @return mixed
  1285. */
  1286. public function getHfFeeAmt()
  1287. {
  1288. return $this->hfFeeAmt;
  1289. }
  1290. /**
  1291. * @param mixed $hfFeeAmt
  1292. * @return StoreOrderEntity
  1293. */
  1294. public function setHfFeeAmt($hfFeeAmt): StoreOrderEntity
  1295. {
  1296. $this->hfFeeAmt = $hfFeeAmt;
  1297. return $this;
  1298. }
  1299. /**
  1300. * @return mixed
  1301. */
  1302. public function getHfClearTime()
  1303. {
  1304. return $this->hfClearTime;
  1305. }
  1306. /**
  1307. * @param mixed $hfClearTime
  1308. * @return StoreOrderEntity
  1309. */
  1310. public function setHfClearTime($hfClearTime): StoreOrderEntity
  1311. {
  1312. $this->hfClearTime = $hfClearTime;
  1313. return $this;
  1314. }
  1315. /**
  1316. * @return mixed
  1317. */
  1318. public function getPayOpenId()
  1319. {
  1320. return $this->payOpenId;
  1321. }
  1322. /**
  1323. * @param mixed $payOpenId
  1324. * @return StoreOrderEntity
  1325. */
  1326. public function setPayOpenId($payOpenId): StoreOrderEntity
  1327. {
  1328. $this->payOpenId = $payOpenId;
  1329. return $this;
  1330. }
  1331. /**
  1332. * @return mixed
  1333. */
  1334. public function getIsDayPay()
  1335. {
  1336. return $this->isDayPay;
  1337. }
  1338. /**
  1339. * @param mixed $isDayPay
  1340. * @return StoreOrderEntity
  1341. */
  1342. public function setIsDayPay($isDayPay): StoreOrderEntity
  1343. {
  1344. $this->isDayPay = $isDayPay;
  1345. return $this;
  1346. }
  1347. /**
  1348. * @return mixed
  1349. */
  1350. public function getIsSettlement()
  1351. {
  1352. return $this->isSettlement;
  1353. }
  1354. /**
  1355. * @param mixed $isSettlement
  1356. * @return StoreOrderEntity
  1357. */
  1358. public function setIsSettlement($isSettlement): StoreOrderEntity
  1359. {
  1360. $this->isSettlement = $isSettlement;
  1361. return $this;
  1362. }
  1363. /**
  1364. * @return mixed
  1365. */
  1366. public function getSettlementTime()
  1367. {
  1368. return $this->settlementTime;
  1369. }
  1370. /**
  1371. * @param mixed $settlementTime
  1372. * @return StoreOrderEntity
  1373. */
  1374. public function setSettlementTime($settlementTime): StoreOrderEntity
  1375. {
  1376. $this->settlementTime = $settlementTime;
  1377. return $this;
  1378. }
  1379. /**
  1380. * @return mixed
  1381. */
  1382. public function getShareUid()
  1383. {
  1384. return $this->shareUid;
  1385. }
  1386. /**
  1387. * @param mixed $shareUid
  1388. * @return StoreOrderEntity
  1389. */
  1390. public function setShareUid($shareUid): StoreOrderEntity
  1391. {
  1392. $this->shareUid = $shareUid;
  1393. return $this;
  1394. }
  1395. /**
  1396. * @return mixed
  1397. */
  1398. public function getConPri()
  1399. {
  1400. return $this->conPri;
  1401. }
  1402. /**
  1403. * @param mixed $conPri
  1404. * @return StoreOrderEntity
  1405. */
  1406. public function setConPri($conPri): StoreOrderEntity
  1407. {
  1408. $this->conPri = $conPri;
  1409. return $this;
  1410. }
  1411. /**
  1412. * @return mixed
  1413. */
  1414. public function getUserOfGoodsId()
  1415. {
  1416. return $this->userOfGoodsId;
  1417. }
  1418. /**
  1419. * @param mixed $userOfGoodsId
  1420. * @return StoreOrderEntity
  1421. */
  1422. public function setUserOfGoodsId($userOfGoodsId): StoreOrderEntity
  1423. {
  1424. $this->userOfGoodsId = $userOfGoodsId;
  1425. return $this;
  1426. }
  1427. /**
  1428. * @return mixed
  1429. */
  1430. public function getFzonePaytype()
  1431. {
  1432. return $this->fzonePaytype;
  1433. }
  1434. /**
  1435. * @param mixed $fzonePaytype
  1436. * @return StoreOrderEntity
  1437. */
  1438. public function setFzonePaytype($fzonePaytype): StoreOrderEntity
  1439. {
  1440. if (is_array($fzonePaytype)) {
  1441. $this->fzonePaytype = json_encode($fzonePaytype);
  1442. $this->deconstructionFzonePaytype();
  1443. } else if (is_string($fzonePaytype)) {
  1444. if (!empty(json_decode($fzonePaytype, true))) {
  1445. $this->fzonePaytype = $fzonePaytype;
  1446. $this->deconstructionFzonePaytype();
  1447. }
  1448. }
  1449. return $this;
  1450. }
  1451. /**
  1452. * @return mixed
  1453. */
  1454. public function getFzonePayJingdou()
  1455. {
  1456. return $this->fzonePayJingdou;
  1457. }
  1458. /**
  1459. * @param mixed $fzonePayJingdou
  1460. * @return StoreOrderEntity
  1461. */
  1462. public function setFzonePayJingdou($fzonePayJingdou): StoreOrderEntity
  1463. {
  1464. $this->fzonePayJingdou = $fzonePayJingdou;
  1465. return $this;
  1466. }
  1467. /**
  1468. * @return mixed
  1469. */
  1470. public function getFzonePayVr()
  1471. {
  1472. return $this->fzonePayVr;
  1473. }
  1474. /**
  1475. * @param mixed $fzonePayVr
  1476. * @return StoreOrderEntity
  1477. */
  1478. public function setFzonePayVr($fzonePayVr): StoreOrderEntity
  1479. {
  1480. $this->fzonePayVr = $fzonePayVr;
  1481. return $this;
  1482. }
  1483. /**
  1484. * @return mixed
  1485. */
  1486. public function getFzonePayJifen()
  1487. {
  1488. return $this->fzonePayJifen;
  1489. }
  1490. /**
  1491. * @param mixed $fzonePayJifen
  1492. * @return StoreOrderEntity
  1493. */
  1494. public function setFzonePayJifen($fzonePayJifen): StoreOrderEntity
  1495. {
  1496. $this->fzonePayJifen = $fzonePayJifen;
  1497. return $this;
  1498. }
  1499. /**
  1500. * @return mixed
  1501. */
  1502. public function getFzonePayPrice()
  1503. {
  1504. return $this->fzonePayPrice;
  1505. }
  1506. /**
  1507. * @param mixed $fzonePayPrice
  1508. * @return StoreOrderEntity
  1509. */
  1510. public function setFzonePayPrice($fzonePayPrice): StoreOrderEntity
  1511. {
  1512. $this->fzonePayPrice = $fzonePayPrice;
  1513. return $this;
  1514. }
  1515. /**
  1516. * @return mixed
  1517. */
  1518. public function getFzonePayOther()
  1519. {
  1520. return $this->fzonePayOther;
  1521. }
  1522. /**
  1523. * @param mixed $fzonePayOther
  1524. * @return StoreOrderEntity
  1525. */
  1526. public function setFzonePayOther($fzonePayOther): StoreOrderEntity
  1527. {
  1528. $this->fzonePayOther = $fzonePayOther;
  1529. return $this;
  1530. }
  1531. /**
  1532. * @return mixed
  1533. */
  1534. public function getFzonePayNote()
  1535. {
  1536. return $this->fzonePayNote;
  1537. }
  1538. /**
  1539. * @param mixed $fzonePayNote
  1540. * @return StoreOrderEntity
  1541. */
  1542. public function setFzonePayNote($fzonePayNote): StoreOrderEntity
  1543. {
  1544. $this->fzonePayNote = $fzonePayNote;
  1545. return $this;
  1546. }
  1547. /**
  1548. * @return mixed
  1549. */
  1550. public function getFzonePayTypeBySplit()
  1551. {
  1552. return $this->fzonePayType;
  1553. }
  1554. /**
  1555. * @param mixed $fzonePayType
  1556. * @return StoreOrderEntity
  1557. */
  1558. public function setFzonePayTypeBySplit($fzonePayType): StoreOrderEntity
  1559. {
  1560. $this->fzonePayType = $fzonePayType;
  1561. return $this;
  1562. }
  1563. public function deconstructionFzonePaytype()
  1564. {
  1565. if (!empty($this->getFzonePayType()) && is_array(json_decode($this->getFzonePayType(), true))) {
  1566. /** @var FzonePayTypeEntity $fzonePayTypeEntity */
  1567. $fzonePayTypeEntity = FzonePayTypeEntity::newInstance(json_decode($this->getFzonePayType(), true));
  1568. $this->setFzonePayNote($fzonePayTypeEntity->getNote());
  1569. $this->setFzonePayTypeBySplit($fzonePayTypeEntity->getType());
  1570. // 验证支付方式
  1571. if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B1-VR+Score']['code']) {
  1572. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1573. $this->setFzonePayJifen($fzonePayTypeEntity->getOther());
  1574. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B2-Cash+Score']['code']) {
  1575. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1576. $this->setFzonePayJifen($fzonePayTypeEntity->getOther());
  1577. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B3-VR+Jingdou']['code']) {
  1578. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1579. $this->setFzonePayJingdou($fzonePayTypeEntity->getOther());
  1580. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B4-Cash+Jingdou']['code']) {
  1581. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1582. $this->setFzonePayJingdou($fzonePayTypeEntity->getOther());
  1583. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B5-VR']['code']) {
  1584. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1585. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B6-Cash']['code']) {
  1586. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1587. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A1-VR']['code']) {
  1588. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1589. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A2-Cash']['code']) {
  1590. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1591. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A3-Cash+VR']['code']) {
  1592. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1593. $this->setFzonePayVr($fzonePayTypeEntity->getOther());
  1594. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['C1-Fugou']['code']) {
  1595. $this->setFzonePayOther($fzonePayTypeEntity->getPrice());
  1596. }
  1597. }
  1598. }
  1599. }