| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836 |
- <?php
- namespace app\entity\data\store;
- use app\common\enum\store\StoreOrderEnum;
- use app\entity\data\DataEntity;
- use app\entity\monomer\store\FzonePayTypeEntity;
- class StoreOrderEntity extends DataEntity
- {
- public $orderId = null; // 订单ID
- public $groupOrderId = null; // 订单组 id
- public $orderSn = null; // 订单号
- public $uid = null; // 用户id
- public $realName = null; // 用户姓名
- public $userPhone = null; // 用户电话
- public $userAddress = null; // 详细地址
- public $userAddressIds = null; // 详细地址id
- public $areaManageAddressIds = null; // 申请代理地址 只有合伙人商品有
- public $cartId = null; // 购物车id
- public $totalNum = null; // 订单商品总数
- public $totalPrice = null; // 订单总价
- public $totalPostage = null; // 邮费
- public $payPrice = null; // 实际支付金额
- public $payPostage = null; // 支付邮费
- public $extensionOne = null; // 一级佣金
- public $extensionTwo = null; // 二级佣金
- public $commissionRate = null; // 平台手续费(汇付通道服务费)
- public $couponId = null; // 优惠券id
- public $couponPrice = null; // 优惠券金额
- public $orderType = null; // 0普通1自提
- public $paid = null; // 支付状态
- public $payTime = null; // 支付时间
- public $payType = null; // 支付方式 0余额 1微信 2小程序 4支付宝 5特殊商户积分
- public $createTime = null; // 创建时间
- public $isIndependentaccount = null; // 是否分账:0:否,1:是
- public $status = null; // 订单状态(0:待发货;1:待收货;2:待评价;3:已完成;4已申请退款;-1:已退款)5未支付 6已取消
- public $deliveryType = null; // 发货类型(1:发货 2: 送货 3: 虚拟)
- public $deliveryName = null; // 快递名称/送货人姓名
- public $deliveryId = null; // 快递单号/手机号
- public $mark = null; // 备注
- public $remark = null; // 管理员备注
- public $adminMark = null; // 总后台备注
- public $verifyCode = null; // 核销码
- public $verifyTime = null; // 核销时间
- public $verifyServiceId = null; // 核销客服 id
- public $merId = null; // 商户ID
- public $reconciliationId = null; // 对账id
- public $cost = null; // 成本价
- public $isDel = null; // 是否删除
- public $isSystemDel = null; // 后台是否删除
- public $remind = null; // 提醒标识
- public $remindTime = null; // 提醒时间
- public $gzc = null; // 是否记录公证处入账明细
- public $tradeNo = null; // SaaS平台的交易订单编号
- public $channelTradeNo = null; // 渠道商订单号
- public $alipayNo = null; // 支付宝单号
- public $weixinNo = null; // 微信单号
- public $tableId = null; // 表 ID
- public $merMoney = null; // 商户可收金额
- public $lastStatus = null; // 上次订单状态 用于拒绝退款
- public $shareId = null; // 分享的ID
- public $payMerId = null; // 积分支付用的商户ID
- public $isSplitToTomorrow = null; // 是否分账
- public $serviceMoney = null; // 分给平台的钱
- public $testOrder = null; // 是否是测试订单
- public $dacangId = null; // 大仓ID
- public $distributionMode = null; // 发货模式 1快递 2 自提
- public $daCangProfit = null; // 大仓利润
- public $recommendedMerchants = null; // 推荐商家流水返佣
- public $merFanyong = null; // 可分总佣金
- public $isDacang = null; // 是否大仓订单
- public $costPrice = null; // 成本价
- public $douhuomall = null; // 是否供应链订单
- public $douhuomallStatus = null; // 供应链订单状态
- public $douhuomallMsg = null; // 供应链订单返回结果
- public $addressId = null; // 供应链需要的地址id
- public $douhuomallOrderNo = null; // 供应链订单号
- public $supplyType = null; // 状态 0:待审核 -1:审核未通过 1:待退货 2:待收货 3:已退款
- public $seckill = null; // 是否秒杀订单
- public $glj = null; // 管理奖是否结算
- public $exchangePhone = null; // 兑换手机号
- public $youhuiPrice = null; // 随机减金额
- public $isRedYlj = null; // 红积分订单的养老金状态
- public $hfFeeAmt = null; // 汇付通道服务费
- public $hfClearTime = null; // 汇付分账成功时间
- public $payOpenId = null; // 支付人openid
- public $isDayPay = null; // 是否代付订单
- public $isSettlement = null; // 是否已结算
- public $settlementTime = null; // 结算时间
- public $shareUid = null; // 分享用户uid
- public $conPri = null; // 利润
- public $userOfGoodsId = null; // 会员区需要升级权限加上ID
- public $fzonePaytype = null; // 组合支付
- public $fzonePayJingdou = null; // 组合支付京豆
- public $fzonePayVr = null; // 组合支付vr
- public $fzonePayJifen = null; // 组合支付积分
- public $fzonePayPrice = null; // 组合支付现金
- public $fzonePayOther = null; // 组合支付other
- public $fzonePayNote = null; // 组合支付备注
- public $fzonePayType = null;
- public $pensionJson = null; // 养老金设置(将当前商品的养老金分配设置保存一份)
- public $pickUpId = null;
- public $alibabaOrderId = null;
- /**
- * @return mixed
- */
- public function getOrderId()
- {
- return $this->orderId;
- }
- /**
- * @param mixed $orderId
- * @return StoreOrderEntity
- */
- public function setOrderId($orderId): StoreOrderEntity
- {
- $this->orderId = $orderId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getGroupOrderId()
- {
- return $this->groupOrderId;
- }
- /**
- * @param mixed $groupOrderId
- * @return StoreOrderEntity
- */
- public function setGroupOrderId($groupOrderId): StoreOrderEntity
- {
- $this->groupOrderId = $groupOrderId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderSn()
- {
- return $this->orderSn;
- }
- /**
- * @param mixed $orderSn
- * @return StoreOrderEntity
- */
- public function setOrderSn($orderSn): StoreOrderEntity
- {
- $this->orderSn = $orderSn;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUid()
- {
- return $this->uid;
- }
- /**
- * @param mixed $uid
- * @return StoreOrderEntity
- */
- public function setUid($uid): StoreOrderEntity
- {
- $this->uid = $uid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRealName()
- {
- return $this->realName;
- }
- /**
- * @param mixed $realName
- * @return StoreOrderEntity
- */
- public function setRealName($realName): StoreOrderEntity
- {
- $this->realName = $realName;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserPhone()
- {
- return $this->userPhone;
- }
- /**
- * @param mixed $userPhone
- * @return StoreOrderEntity
- */
- public function setUserPhone($userPhone): StoreOrderEntity
- {
- $this->userPhone = $userPhone;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserAddress()
- {
- return $this->userAddress;
- }
- /**
- * @param mixed $userAddress
- * @return StoreOrderEntity
- */
- public function setUserAddress($userAddress): StoreOrderEntity
- {
- $this->userAddress = $userAddress;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserAddressIds()
- {
- return $this->userAddressIds;
- }
- /**
- * @param mixed $userAddressIds
- * @return StoreOrderEntity
- */
- public function setUserAddressIds($userAddressIds): StoreOrderEntity
- {
- $this->userAddressIds = $userAddressIds;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAreaManageAddressIds()
- {
- return $this->areaManageAddressIds;
- }
- /**
- * @param mixed $areaManageAddressIds
- * @return StoreOrderEntity
- */
- public function setAreaManageAddressIds($areaManageAddressIds): StoreOrderEntity
- {
- $this->areaManageAddressIds = $areaManageAddressIds;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCartId()
- {
- return $this->cartId;
- }
- /**
- * @param mixed $cartId
- * @return StoreOrderEntity
- */
- public function setCartId($cartId): StoreOrderEntity
- {
- $this->cartId = $cartId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTotalNum()
- {
- return $this->totalNum;
- }
- /**
- * @param mixed $totalNum
- * @return StoreOrderEntity
- */
- public function setTotalNum($totalNum): StoreOrderEntity
- {
- $this->totalNum = $totalNum;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTotalPrice()
- {
- return $this->totalPrice;
- }
- /**
- * @param mixed $totalPrice
- * @return StoreOrderEntity
- */
- public function setTotalPrice($totalPrice): StoreOrderEntity
- {
- $this->totalPrice = $totalPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTotalPostage()
- {
- return $this->totalPostage;
- }
- /**
- * @param mixed $totalPostage
- * @return StoreOrderEntity
- */
- public function setTotalPostage($totalPostage): StoreOrderEntity
- {
- $this->totalPostage = $totalPostage;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayPrice()
- {
- return $this->payPrice;
- }
- /**
- * @param mixed $payPrice
- * @return StoreOrderEntity
- */
- public function setPayPrice($payPrice): StoreOrderEntity
- {
- $this->payPrice = $payPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayPostage()
- {
- return $this->payPostage;
- }
- /**
- * @param mixed $payPostage
- * @return StoreOrderEntity
- */
- public function setPayPostage($payPostage): StoreOrderEntity
- {
- $this->payPostage = $payPostage;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getExtensionOne()
- {
- return $this->extensionOne;
- }
- /**
- * @param mixed $extensionOne
- * @return StoreOrderEntity
- */
- public function setExtensionOne($extensionOne): StoreOrderEntity
- {
- $this->extensionOne = $extensionOne;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getExtensionTwo()
- {
- return $this->extensionTwo;
- }
- /**
- * @param mixed $extensionTwo
- * @return StoreOrderEntity
- */
- public function setExtensionTwo($extensionTwo): StoreOrderEntity
- {
- $this->extensionTwo = $extensionTwo;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCommissionRate()
- {
- return $this->commissionRate;
- }
- /**
- * @param mixed $commissionRate
- * @return StoreOrderEntity
- */
- public function setCommissionRate($commissionRate): StoreOrderEntity
- {
- $this->commissionRate = $commissionRate;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCouponId()
- {
- return $this->couponId;
- }
- /**
- * @param mixed $couponId
- * @return StoreOrderEntity
- */
- public function setCouponId($couponId): StoreOrderEntity
- {
- $this->couponId = $couponId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCouponPrice()
- {
- return $this->couponPrice;
- }
- /**
- * @param mixed $couponPrice
- * @return StoreOrderEntity
- */
- public function setCouponPrice($couponPrice): StoreOrderEntity
- {
- $this->couponPrice = $couponPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderType()
- {
- return $this->orderType;
- }
- /**
- * @param mixed $orderType
- * @return StoreOrderEntity
- */
- public function setOrderType($orderType): StoreOrderEntity
- {
- $this->orderType = $orderType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPaid()
- {
- return $this->paid;
- }
- /**
- * @param mixed $paid
- * @return StoreOrderEntity
- */
- public function setPaid($paid): StoreOrderEntity
- {
- $this->paid = $paid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayTime()
- {
- return $this->payTime;
- }
- /**
- * @param mixed $payTime
- * @return StoreOrderEntity
- */
- public function setPayTime($payTime): StoreOrderEntity
- {
- $this->payTime = $payTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayType()
- {
- return $this->payType;
- }
- /**
- * @param mixed $payType
- * @return StoreOrderEntity
- */
- public function setPayType($payType): StoreOrderEntity
- {
- $this->payType = $payType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return StoreOrderEntity
- */
- public function setCreateTime($createTime): StoreOrderEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsIndependentaccount()
- {
- return $this->isIndependentaccount;
- }
- /**
- * @param mixed $isIndependentaccount
- * @return StoreOrderEntity
- */
- public function setIsIndependentaccount($isIndependentaccount): StoreOrderEntity
- {
- $this->isIndependentaccount = $isIndependentaccount;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return StoreOrderEntity
- */
- public function setStatus($status): StoreOrderEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDeliveryType()
- {
- return $this->deliveryType;
- }
- /**
- * @param mixed $deliveryType
- * @return StoreOrderEntity
- */
- public function setDeliveryType($deliveryType): StoreOrderEntity
- {
- $this->deliveryType = $deliveryType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDeliveryName()
- {
- return $this->deliveryName;
- }
- /**
- * @param mixed $deliveryName
- * @return StoreOrderEntity
- */
- public function setDeliveryName($deliveryName): StoreOrderEntity
- {
- $this->deliveryName = $deliveryName;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDeliveryId()
- {
- return $this->deliveryId;
- }
- /**
- * @param mixed $deliveryId
- * @return StoreOrderEntity
- */
- public function setDeliveryId($deliveryId): StoreOrderEntity
- {
- $this->deliveryId = $deliveryId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMark()
- {
- return $this->mark;
- }
- /**
- * @param mixed $mark
- * @return StoreOrderEntity
- */
- public function setMark($mark): StoreOrderEntity
- {
- $this->mark = $mark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRemark()
- {
- return $this->remark;
- }
- /**
- * @param mixed $remark
- * @return StoreOrderEntity
- */
- public function setRemark($remark): StoreOrderEntity
- {
- $this->remark = $remark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAdminMark()
- {
- return $this->adminMark;
- }
- /**
- * @param mixed $adminMark
- * @return StoreOrderEntity
- */
- public function setAdminMark($adminMark): StoreOrderEntity
- {
- $this->adminMark = $adminMark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getVerifyCode()
- {
- return $this->verifyCode;
- }
- /**
- * @param mixed $verifyCode
- * @return StoreOrderEntity
- */
- public function setVerifyCode($verifyCode): StoreOrderEntity
- {
- $this->verifyCode = $verifyCode;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getVerifyTime()
- {
- return $this->verifyTime;
- }
- /**
- * @param mixed $verifyTime
- * @return StoreOrderEntity
- */
- public function setVerifyTime($verifyTime): StoreOrderEntity
- {
- $this->verifyTime = $verifyTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getVerifyServiceId()
- {
- return $this->verifyServiceId;
- }
- /**
- * @param mixed $verifyServiceId
- * @return StoreOrderEntity
- */
- public function setVerifyServiceId($verifyServiceId): StoreOrderEntity
- {
- $this->verifyServiceId = $verifyServiceId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerId()
- {
- return $this->merId;
- }
- /**
- * @param mixed $merId
- * @return StoreOrderEntity
- */
- public function setMerId($merId): StoreOrderEntity
- {
- $this->merId = $merId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getReconciliationId()
- {
- return $this->reconciliationId;
- }
- /**
- * @param mixed $reconciliationId
- * @return StoreOrderEntity
- */
- public function setReconciliationId($reconciliationId): StoreOrderEntity
- {
- $this->reconciliationId = $reconciliationId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCost()
- {
- return $this->cost;
- }
- /**
- * @param mixed $cost
- * @return StoreOrderEntity
- */
- public function setCost($cost): StoreOrderEntity
- {
- $this->cost = $cost;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsDel()
- {
- return $this->isDel;
- }
- /**
- * @param mixed $isDel
- * @return StoreOrderEntity
- */
- public function setIsDel($isDel): StoreOrderEntity
- {
- $this->isDel = $isDel;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsSystemDel()
- {
- return $this->isSystemDel;
- }
- /**
- * @param mixed $isSystemDel
- * @return StoreOrderEntity
- */
- public function setIsSystemDel($isSystemDel): StoreOrderEntity
- {
- $this->isSystemDel = $isSystemDel;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRemind()
- {
- return $this->remind;
- }
- /**
- * @param mixed $remind
- * @return StoreOrderEntity
- */
- public function setRemind($remind): StoreOrderEntity
- {
- $this->remind = $remind;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRemindTime()
- {
- return $this->remindTime;
- }
- /**
- * @param mixed $remindTime
- * @return StoreOrderEntity
- */
- public function setRemindTime($remindTime): StoreOrderEntity
- {
- $this->remindTime = $remindTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getGzc()
- {
- return $this->gzc;
- }
- /**
- * @param mixed $gzc
- * @return StoreOrderEntity
- */
- public function setGzc($gzc): StoreOrderEntity
- {
- $this->gzc = $gzc;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTradeNo()
- {
- return $this->tradeNo;
- }
- /**
- * @param mixed $tradeNo
- * @return StoreOrderEntity
- */
- public function setTradeNo($tradeNo): StoreOrderEntity
- {
- $this->tradeNo = $tradeNo;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getChannelTradeNo()
- {
- return $this->channelTradeNo;
- }
- /**
- * @param mixed $channelTradeNo
- * @return StoreOrderEntity
- */
- public function setChannelTradeNo($channelTradeNo): StoreOrderEntity
- {
- $this->channelTradeNo = $channelTradeNo;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAlipayNo()
- {
- return $this->alipayNo;
- }
- /**
- * @param mixed $alipayNo
- * @return StoreOrderEntity
- */
- public function setAlipayNo($alipayNo): StoreOrderEntity
- {
- $this->alipayNo = $alipayNo;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getWeixinNo()
- {
- return $this->weixinNo;
- }
- /**
- * @param mixed $weixinNo
- * @return StoreOrderEntity
- */
- public function setWeixinNo($weixinNo): StoreOrderEntity
- {
- $this->weixinNo = $weixinNo;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTableId()
- {
- return $this->tableId;
- }
- /**
- * @param mixed $tableId
- * @return StoreOrderEntity
- */
- public function setTableId($tableId): StoreOrderEntity
- {
- $this->tableId = $tableId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerMoney()
- {
- return $this->merMoney;
- }
- /**
- * @param mixed $merMoney
- * @return StoreOrderEntity
- */
- public function setMerMoney($merMoney): StoreOrderEntity
- {
- $this->merMoney = $merMoney;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLastStatus()
- {
- return $this->lastStatus;
- }
- /**
- * @param mixed $lastStatus
- * @return StoreOrderEntity
- */
- public function setLastStatus($lastStatus): StoreOrderEntity
- {
- $this->lastStatus = $lastStatus;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getShareId()
- {
- return $this->shareId;
- }
- /**
- * @param mixed $shareId
- * @return StoreOrderEntity
- */
- public function setShareId($shareId): StoreOrderEntity
- {
- $this->shareId = $shareId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayMerId()
- {
- return $this->payMerId;
- }
- /**
- * @param mixed $payMerId
- * @return StoreOrderEntity
- */
- public function setPayMerId($payMerId): StoreOrderEntity
- {
- $this->payMerId = $payMerId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsSplitToTomorrow()
- {
- return $this->isSplitToTomorrow;
- }
- /**
- * @param mixed $isSplitToTomorrow
- * @return StoreOrderEntity
- */
- public function setIsSplitToTomorrow($isSplitToTomorrow): StoreOrderEntity
- {
- $this->isSplitToTomorrow = $isSplitToTomorrow;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getServiceMoney()
- {
- return $this->serviceMoney;
- }
- /**
- * @param mixed $serviceMoney
- * @return StoreOrderEntity
- */
- public function setServiceMoney($serviceMoney): StoreOrderEntity
- {
- $this->serviceMoney = $serviceMoney;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTestOrder()
- {
- return $this->testOrder;
- }
- /**
- * @param mixed $testOrder
- * @return StoreOrderEntity
- */
- public function setTestOrder($testOrder): StoreOrderEntity
- {
- $this->testOrder = $testOrder;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDacangId()
- {
- return $this->dacangId;
- }
- /**
- * @param mixed $dacangId
- * @return StoreOrderEntity
- */
- public function setDacangId($dacangId): StoreOrderEntity
- {
- $this->dacangId = $dacangId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDistributionMode()
- {
- return $this->distributionMode;
- }
- /**
- * @param mixed $distributionMode
- * @return StoreOrderEntity
- */
- public function setDistributionMode($distributionMode): StoreOrderEntity
- {
- $this->distributionMode = $distributionMode;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDaCangProfit()
- {
- return $this->daCangProfit;
- }
- /**
- * @param mixed $daCangProfit
- * @return StoreOrderEntity
- */
- public function setDaCangProfit($daCangProfit): StoreOrderEntity
- {
- $this->daCangProfit = $daCangProfit;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getRecommendedMerchants()
- {
- return $this->recommendedMerchants;
- }
- /**
- * @param mixed $recommendedMerchants
- * @return StoreOrderEntity
- */
- public function setRecommendedMerchants($recommendedMerchants): StoreOrderEntity
- {
- $this->recommendedMerchants = $recommendedMerchants;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerFanyong()
- {
- return $this->merFanyong;
- }
- /**
- * @param mixed $merFanyong
- * @return StoreOrderEntity
- */
- public function setMerFanyong($merFanyong): StoreOrderEntity
- {
- $this->merFanyong = $merFanyong;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsDacang()
- {
- return $this->isDacang;
- }
- /**
- * @param mixed $isDacang
- * @return StoreOrderEntity
- */
- public function setIsDacang($isDacang): StoreOrderEntity
- {
- $this->isDacang = $isDacang;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCostPrice()
- {
- return $this->costPrice;
- }
- /**
- * @param mixed $costPrice
- * @return StoreOrderEntity
- */
- public function setCostPrice($costPrice): StoreOrderEntity
- {
- $this->costPrice = $costPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDouhuomall()
- {
- return $this->douhuomall;
- }
- /**
- * @param mixed $douhuomall
- * @return StoreOrderEntity
- */
- public function setDouhuomall($douhuomall): StoreOrderEntity
- {
- $this->douhuomall = $douhuomall;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDouhuomallStatus()
- {
- return $this->douhuomallStatus;
- }
- /**
- * @param mixed $douhuomallStatus
- * @return StoreOrderEntity
- */
- public function setDouhuomallStatus($douhuomallStatus): StoreOrderEntity
- {
- $this->douhuomallStatus = $douhuomallStatus;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDouhuomallMsg()
- {
- return $this->douhuomallMsg;
- }
- /**
- * @param mixed $douhuomallMsg
- * @return StoreOrderEntity
- */
- public function setDouhuomallMsg($douhuomallMsg): StoreOrderEntity
- {
- $this->douhuomallMsg = $douhuomallMsg;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getAddressId()
- {
- return $this->addressId;
- }
- /**
- * @param mixed $addressId
- * @return StoreOrderEntity
- */
- public function setAddressId($addressId): StoreOrderEntity
- {
- $this->addressId = $addressId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDouhuomallOrderNo()
- {
- return $this->douhuomallOrderNo;
- }
- /**
- * @param mixed $douhuomallOrderNo
- * @return StoreOrderEntity
- */
- public function setDouhuomallOrderNo($douhuomallOrderNo): StoreOrderEntity
- {
- $this->douhuomallOrderNo = $douhuomallOrderNo;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSupplyType()
- {
- return $this->supplyType;
- }
- /**
- * @param mixed $supplyType
- * @return StoreOrderEntity
- */
- public function setSupplyType($supplyType): StoreOrderEntity
- {
- $this->supplyType = $supplyType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSeckill()
- {
- return $this->seckill;
- }
- /**
- * @param mixed $seckill
- * @return StoreOrderEntity
- */
- public function setSeckill($seckill): StoreOrderEntity
- {
- $this->seckill = $seckill;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getGlj()
- {
- return $this->glj;
- }
- /**
- * @param mixed $glj
- * @return StoreOrderEntity
- */
- public function setGlj($glj): StoreOrderEntity
- {
- $this->glj = $glj;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getExchangePhone()
- {
- return $this->exchangePhone;
- }
- /**
- * @param mixed $exchangePhone
- * @return StoreOrderEntity
- */
- public function setExchangePhone($exchangePhone): StoreOrderEntity
- {
- $this->exchangePhone = $exchangePhone;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getYouhuiPrice()
- {
- return $this->youhuiPrice;
- }
- /**
- * @param mixed $youhuiPrice
- * @return StoreOrderEntity
- */
- public function setYouhuiPrice($youhuiPrice): StoreOrderEntity
- {
- $this->youhuiPrice = $youhuiPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsRedYlj()
- {
- return $this->isRedYlj;
- }
- /**
- * @param mixed $isRedYlj
- * @return StoreOrderEntity
- */
- public function setIsRedYlj($isRedYlj): StoreOrderEntity
- {
- $this->isRedYlj = $isRedYlj;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getHfFeeAmt()
- {
- return $this->hfFeeAmt;
- }
- /**
- * @param mixed $hfFeeAmt
- * @return StoreOrderEntity
- */
- public function setHfFeeAmt($hfFeeAmt): StoreOrderEntity
- {
- $this->hfFeeAmt = $hfFeeAmt;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getHfClearTime()
- {
- return $this->hfClearTime;
- }
- /**
- * @param mixed $hfClearTime
- * @return StoreOrderEntity
- */
- public function setHfClearTime($hfClearTime): StoreOrderEntity
- {
- $this->hfClearTime = $hfClearTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPayOpenId()
- {
- return $this->payOpenId;
- }
- /**
- * @param mixed $payOpenId
- * @return StoreOrderEntity
- */
- public function setPayOpenId($payOpenId): StoreOrderEntity
- {
- $this->payOpenId = $payOpenId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsDayPay()
- {
- return $this->isDayPay;
- }
- /**
- * @param mixed $isDayPay
- * @return StoreOrderEntity
- */
- public function setIsDayPay($isDayPay): StoreOrderEntity
- {
- $this->isDayPay = $isDayPay;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsSettlement()
- {
- return $this->isSettlement;
- }
- /**
- * @param mixed $isSettlement
- * @return StoreOrderEntity
- */
- public function setIsSettlement($isSettlement): StoreOrderEntity
- {
- $this->isSettlement = $isSettlement;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSettlementTime()
- {
- return $this->settlementTime;
- }
- /**
- * @param mixed $settlementTime
- * @return StoreOrderEntity
- */
- public function setSettlementTime($settlementTime): StoreOrderEntity
- {
- $this->settlementTime = $settlementTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getShareUid()
- {
- return $this->shareUid;
- }
- /**
- * @param mixed $shareUid
- * @return StoreOrderEntity
- */
- public function setShareUid($shareUid): StoreOrderEntity
- {
- $this->shareUid = $shareUid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getConPri()
- {
- return $this->conPri;
- }
- /**
- * @param mixed $conPri
- * @return StoreOrderEntity
- */
- public function setConPri($conPri): StoreOrderEntity
- {
- $this->conPri = $conPri;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUserOfGoodsId()
- {
- return $this->userOfGoodsId;
- }
- /**
- * @param mixed $userOfGoodsId
- * @return StoreOrderEntity
- */
- public function setUserOfGoodsId($userOfGoodsId): StoreOrderEntity
- {
- $this->userOfGoodsId = $userOfGoodsId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePaytype()
- {
- return $this->fzonePaytype;
- }
- /**
- * @param mixed $fzonePaytype
- * @return StoreOrderEntity
- */
- public function setFzonePaytype($fzonePaytype): StoreOrderEntity
- {
- if (is_array($fzonePaytype)) {
- $this->fzonePaytype = json_encode($fzonePaytype);
- $this->deconstructionFzonePaytype();
- } else if (is_string($fzonePaytype)) {
- if (!empty(json_decode($fzonePaytype, true))) {
- $this->fzonePaytype = $fzonePaytype;
- $this->deconstructionFzonePaytype();
- }
- }
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayJingdou()
- {
- return $this->fzonePayJingdou;
- }
- /**
- * @param mixed $fzonePayJingdou
- * @return StoreOrderEntity
- */
- public function setFzonePayJingdou($fzonePayJingdou): StoreOrderEntity
- {
- $this->fzonePayJingdou = $fzonePayJingdou;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayVr()
- {
- return $this->fzonePayVr;
- }
- /**
- * @param mixed $fzonePayVr
- * @return StoreOrderEntity
- */
- public function setFzonePayVr($fzonePayVr): StoreOrderEntity
- {
- $this->fzonePayVr = $fzonePayVr;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayJifen()
- {
- return $this->fzonePayJifen;
- }
- /**
- * @param mixed $fzonePayJifen
- * @return StoreOrderEntity
- */
- public function setFzonePayJifen($fzonePayJifen): StoreOrderEntity
- {
- $this->fzonePayJifen = $fzonePayJifen;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayPrice()
- {
- return $this->fzonePayPrice;
- }
- /**
- * @param mixed $fzonePayPrice
- * @return StoreOrderEntity
- */
- public function setFzonePayPrice($fzonePayPrice): StoreOrderEntity
- {
- $this->fzonePayPrice = $fzonePayPrice;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayOther()
- {
- return $this->fzonePayOther;
- }
- /**
- * @param mixed $fzonePayOther
- * @return StoreOrderEntity
- */
- public function setFzonePayOther($fzonePayOther): StoreOrderEntity
- {
- $this->fzonePayOther = $fzonePayOther;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayNote()
- {
- return $this->fzonePayNote;
- }
- /**
- * @param mixed $fzonePayNote
- * @return StoreOrderEntity
- */
- public function setFzonePayNote($fzonePayNote): StoreOrderEntity
- {
- $this->fzonePayNote = $fzonePayNote;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getFzonePayTypeBySplit()
- {
- return $this->fzonePayType;
- }
- /**
- * @param mixed $fzonePayType
- * @return StoreOrderEntity
- */
- public function setFzonePayTypeBySplit($fzonePayType): StoreOrderEntity
- {
- $this->fzonePayType = $fzonePayType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPensionJson()
- {
- if (is_json($this->pensionJson)) {
- return json_decode($this->pensionJson, true);
- }
- return $this->pensionJson;
- }
- /**
- * @param mixed $pensionJson
- * @return StoreOrderEntity
- */
- public function setPensionJson($pensionJson): StoreOrderEntity
- {
- if (is_array($pensionJson)) {
- $pensionJson = json_encode($pensionJson, JSON_UNESCAPED_UNICODE);
- }
- $this->pensionJson = $pensionJson;
- return $this;
- }
- public function getPickUpId()
- {
- return $this->pickUpId;
- }
- public function setPickUpId($pickUpId): StoreOrderEntity
- {
- $this->pickUpId = $pickUpId;
- return $this;
- }
- public function getAlibabaOrderId()
- {
- return $this->alibabaOrderId;
- }
- public function setAlibabaOrderId($alibabaOrderId): StoreOrderEntity
- {
- $this->alibabaOrderId = $alibabaOrderId;
- return $this;
- }
- public function deconstructionFzonePaytype()
- {
- if (!empty($this->getFzonePayType()) && is_array(json_decode($this->getFzonePayType(), true))) {
- /** @var FzonePayTypeEntity $fzonePayTypeEntity */
- $fzonePayTypeEntity = FzonePayTypeEntity::newInstance(json_decode($this->getFzonePayType(), true));
- $this->setFzonePayNote($fzonePayTypeEntity->getNote());
- $this->setFzonePayTypeBySplit($fzonePayTypeEntity->getType());
- // 验证支付方式
- if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B1-VR+Score']['code']) {
- $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
- $this->setFzonePayJifen($fzonePayTypeEntity->getOther());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B2-Cash+Score']['code']) {
- $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
- $this->setFzonePayJifen($fzonePayTypeEntity->getOther());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B3-VR+Jingdou']['code']) {
- $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
- $this->setFzonePayJingdou($fzonePayTypeEntity->getOther());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B4-Cash+Jingdou']['code']) {
- $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
- $this->setFzonePayJingdou($fzonePayTypeEntity->getOther());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B5-VR']['code']) {
- $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['B6-Cash']['code']) {
- $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A1-VR']['code']) {
- $this->setFzonePayVr($fzonePayTypeEntity->getPrice());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A2-Cash']['code']) {
- $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['A3-Cash+VR']['code']) {
- $this->setFzonePayPrice($fzonePayTypeEntity->getPrice());
- $this->setFzonePayVr($fzonePayTypeEntity->getOther());
- } else if ($fzonePayTypeEntity->getType() == StoreOrderEnum::FZONE_PAY_TYPE['C1-Fugou']['code']) {
- $this->setFzonePayOther($fzonePayTypeEntity->getPrice());
- }
- }
- }
- }
|