StoreOrderEntity.php 35 KB

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