StoreOrderEntity.php 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786
  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_string($fzonePaytype)) {
  1441. $fzonePaytypePre = $fzonePaytype;
  1442. $fzonePaytype = '';
  1443. if (is_array($fzonePaytypePre)) {
  1444. $fzonePaytype = json_encode($fzonePaytypePre);
  1445. }
  1446. unset($fzonePaytypePre);
  1447. }
  1448. $this->fzonePaytype = $fzonePaytype;
  1449. $this->deconstructionFzonePaytype();
  1450. return $this;
  1451. }
  1452. /**
  1453. * @return mixed
  1454. */
  1455. public function getFzonePayJingdou()
  1456. {
  1457. return $this->fzonePayJingdou;
  1458. }
  1459. /**
  1460. * @param mixed $fzonePayJingdou
  1461. * @return StoreOrderEntity
  1462. */
  1463. public function setFzonePayJingdou($fzonePayJingdou): StoreOrderEntity
  1464. {
  1465. $this->fzonePayJingdou = $fzonePayJingdou;
  1466. return $this;
  1467. }
  1468. /**
  1469. * @return mixed
  1470. */
  1471. public function getFzonePayVr()
  1472. {
  1473. return $this->fzonePayVr;
  1474. }
  1475. /**
  1476. * @param mixed $fzonePayVr
  1477. * @return StoreOrderEntity
  1478. */
  1479. public function setFzonePayVr($fzonePayVr): StoreOrderEntity
  1480. {
  1481. $this->fzonePayVr = $fzonePayVr;
  1482. return $this;
  1483. }
  1484. /**
  1485. * @return mixed
  1486. */
  1487. public function getFzonePayJifen()
  1488. {
  1489. return $this->fzonePayJifen;
  1490. }
  1491. /**
  1492. * @param mixed $fzonePayJifen
  1493. * @return StoreOrderEntity
  1494. */
  1495. public function setFzonePayJifen($fzonePayJifen): StoreOrderEntity
  1496. {
  1497. $this->fzonePayJifen = $fzonePayJifen;
  1498. return $this;
  1499. }
  1500. /**
  1501. * @return mixed
  1502. */
  1503. public function getFzonePayPrice()
  1504. {
  1505. return $this->fzonePayPrice;
  1506. }
  1507. /**
  1508. * @param mixed $fzonePayPrice
  1509. * @return StoreOrderEntity
  1510. */
  1511. public function setFzonePayPrice($fzonePayPrice): StoreOrderEntity
  1512. {
  1513. $this->fzonePayPrice = $fzonePayPrice;
  1514. return $this;
  1515. }
  1516. /**
  1517. * @return mixed
  1518. */
  1519. public function getFzonePayOther()
  1520. {
  1521. return $this->fzonePayOther;
  1522. }
  1523. /**
  1524. * @param mixed $fzonePayOther
  1525. * @return StoreOrderEntity
  1526. */
  1527. public function setFzonePayOther($fzonePayOther): StoreOrderEntity
  1528. {
  1529. $this->fzonePayOther = $fzonePayOther;
  1530. return $this;
  1531. }
  1532. /**
  1533. * @return mixed
  1534. */
  1535. public function getFzonePayNote()
  1536. {
  1537. return $this->fzonePayNote;
  1538. }
  1539. /**
  1540. * @param mixed $fzonePayNote
  1541. * @return StoreOrderEntity
  1542. */
  1543. public function setFzonePayNote($fzonePayNote): StoreOrderEntity
  1544. {
  1545. $this->fzonePayNote = $fzonePayNote;
  1546. return $this;
  1547. }
  1548. /**
  1549. * @return mixed
  1550. */
  1551. public function getFzonePayTypeBySplit()
  1552. {
  1553. return $this->fzonePayType;
  1554. }
  1555. /**
  1556. * @param mixed $fzonePayType
  1557. * @return StoreOrderEntity
  1558. */
  1559. public function setFzonePayTypeBySplit($fzonePayType): StoreOrderEntity
  1560. {
  1561. $this->fzonePayType = $fzonePayType;
  1562. return $this;
  1563. }
  1564. public function deconstructionFzonePaytype()
  1565. {
  1566. if (!empty($this->getFzonePayType()) && is_array(json_decode($this->getFzonePayType(), true))) {
  1567. /** @var FzonePayTypeEntity $fzonePayTypeEntity */
  1568. $fzonePayTypeEntity = FzonePayTypeEntity::newInstance(json_decode($this->getFzonePayType(), true));
  1569. $this->setFzonePayNote($fzonePayTypeEntity->getNote());
  1570. $this->setFzonePayTypeBySplit($fzonePayTypeEntity->getType());
  1571. // 验证支付方式
  1572. if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B1-VR+Score']['code']) {
  1573. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1574. $this->setFzonePayJifen($fzonePayTypeEntity->getOther());
  1575. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B2-Cash+Score']['code']) {
  1576. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1577. $this->setFzonePayJifen($fzonePayTypeEntity->getOther());
  1578. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B3-VR+Jingdou']['code']) {
  1579. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1580. $this->setFzonePayJingdou($fzonePayTypeEntity->getOther());
  1581. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B4-Cash+Jingdou']['code']) {
  1582. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1583. $this->setFzonePayJingdou($fzonePayTypeEntity->getOther());
  1584. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B5-VR']['code']) {
  1585. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1586. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A1-VR']['code']) {
  1587. $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
  1588. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A2-Cash']['code']) {
  1589. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1590. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A3-Cash+VR']['code']) {
  1591. $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
  1592. $this->setFzonePayVr($fzonePayTypeEntity->getOther());
  1593. } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['C1-Fugou']['code']) {
  1594. $this->setFzonePayOther($fzonePayTypeEntity->getPrice());
  1595. }
  1596. }
  1597. }
  1598. }