| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserBillEntity extends DataEntity
- {
- public $billId = null; // 用户账单id
- public $uid = null; // 用户uid
- public $linkId = null; // 关联订单id
- public $pm = null; // 0 = 支出 1 = 获得
- public $title = null; // 账单标题
- public $category = null; // 明细种类
- public $type = null; // 明细类型
- public $number = null; // 明细数字
- public $balance = null; // 剩余
- public $mark = null; // 备注
- public $createTime = null; // 添加时间
- public $status = null; // 0 = 待确定 1 = 有效 -1 = 无效
- public $commissionType = null; // 佣金类型
- public $orderSn = null; // 订单号
- public $tripartite = null;
- public $typeShop = null; // 0平台1多多进宝2唯品会3苏宁易购4网易考拉5淘宝客6京东联盟7饿了么8线上 9话费
- public $merId = null; // 商户id
- public $source = null; // 1 线下 0线上
- public $orderType = null; // 1自营 2 第三方 订单类型
- public $isRedBrokerage = null; // 1红积分对冲佣金 0正常佣金
- public $gzc = null; // 养老金是否已进入公证处log表0:未进入。1:已进入
- public $isGzc = null; // 0:未发起 1:已发起 2:已成功
- public $takeTime = null; // 结算时间
- public $districtId = null;
- public $streetId = null;
- public $month = null; // 月份
- public $num = null; // 份数
- /**
- * @return mixed
- */
- public function getBillId()
- {
- return $this->billId;
- }
- /**
- * @param mixed $billId
- * @return UserBillEntity
- */
- public function setBillId($billId): UserBillEntity
- {
- $this->billId = $billId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getUid()
- {
- return $this->uid;
- }
- /**
- * @param mixed $uid
- * @return UserBillEntity
- */
- public function setUid($uid): UserBillEntity
- {
- $this->uid = $uid;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getLinkId()
- {
- return $this->linkId;
- }
- /**
- * @param mixed $linkId
- * @return UserBillEntity
- */
- public function setLinkId($linkId): UserBillEntity
- {
- $this->linkId = $linkId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getPm()
- {
- return $this->pm;
- }
- /**
- * @param mixed $pm
- * @return UserBillEntity
- */
- public function setPm($pm): UserBillEntity
- {
- $this->pm = $pm;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTitle()
- {
- return $this->title;
- }
- /**
- * @param mixed $title
- * @return UserBillEntity
- */
- public function setTitle($title): UserBillEntity
- {
- $this->title = $title;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCategory()
- {
- return $this->category;
- }
- /**
- * @param mixed $category
- * @return UserBillEntity
- */
- public function setCategory($category): UserBillEntity
- {
- $this->category = $category;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * @param mixed $type
- * @return UserBillEntity
- */
- public function setType($type): UserBillEntity
- {
- $this->type = $type;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNumber()
- {
- return $this->number;
- }
- /**
- * @param mixed $number
- * @return UserBillEntity
- */
- public function setNumber($number): UserBillEntity
- {
- $this->number = $number;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getBalance()
- {
- return $this->balance;
- }
- /**
- * @param mixed $balance
- * @return UserBillEntity
- */
- public function setBalance($balance): UserBillEntity
- {
- $this->balance = $balance;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMark()
- {
- return $this->mark;
- }
- /**
- * @param mixed $mark
- * @return UserBillEntity
- */
- public function setMark($mark): UserBillEntity
- {
- $this->mark = $mark;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCreateTime()
- {
- return $this->createTime;
- }
- /**
- * @param mixed $createTime
- * @return UserBillEntity
- */
- public function setCreateTime($createTime): UserBillEntity
- {
- $this->createTime = $createTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * @param mixed $status
- * @return UserBillEntity
- */
- public function setStatus($status): UserBillEntity
- {
- $this->status = $status;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getCommissionType()
- {
- return $this->commissionType;
- }
- /**
- * @param mixed $commissionType
- * @return UserBillEntity
- */
- public function setCommissionType($commissionType): UserBillEntity
- {
- $this->commissionType = $commissionType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderSn()
- {
- return $this->orderSn;
- }
- /**
- * @param mixed $orderSn
- * @return UserBillEntity
- */
- public function setOrderSn($orderSn): UserBillEntity
- {
- $this->orderSn = $orderSn;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTripartite()
- {
- return $this->tripartite;
- }
- /**
- * @param mixed $tripartite
- * @return UserBillEntity
- */
- public function setTripartite($tripartite): UserBillEntity
- {
- $this->tripartite = $tripartite;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTypeShop()
- {
- return $this->typeShop;
- }
- /**
- * @param mixed $typeShop
- * @return UserBillEntity
- */
- public function setTypeShop($typeShop): UserBillEntity
- {
- $this->typeShop = $typeShop;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerId()
- {
- return $this->merId;
- }
- /**
- * @param mixed $merId
- * @return UserBillEntity
- */
- public function setMerId($merId): UserBillEntity
- {
- $this->merId = $merId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getSource()
- {
- return $this->source;
- }
- /**
- * @param mixed $source
- * @return UserBillEntity
- */
- public function setSource($source): UserBillEntity
- {
- $this->source = $source;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderType()
- {
- return $this->orderType;
- }
- /**
- * @param mixed $orderType
- * @return UserBillEntity
- */
- public function setOrderType($orderType): UserBillEntity
- {
- $this->orderType = $orderType;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsRedBrokerage()
- {
- return $this->isRedBrokerage;
- }
- /**
- * @param mixed $isRedBrokerage
- * @return UserBillEntity
- */
- public function setIsRedBrokerage($isRedBrokerage): UserBillEntity
- {
- $this->isRedBrokerage = $isRedBrokerage;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getGzc()
- {
- return $this->gzc;
- }
- /**
- * @param mixed $gzc
- * @return UserBillEntity
- */
- public function setGzc($gzc): UserBillEntity
- {
- $this->gzc = $gzc;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsGzc()
- {
- return $this->isGzc;
- }
- /**
- * @param mixed $isGzc
- * @return UserBillEntity
- */
- public function setIsGzc($isGzc): UserBillEntity
- {
- $this->isGzc = $isGzc;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTakeTime()
- {
- return $this->takeTime;
- }
- /**
- * @param mixed $takeTime
- * @return UserBillEntity
- */
- public function setTakeTime($takeTime): UserBillEntity
- {
- $this->takeTime = $takeTime;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDistrictId()
- {
- return $this->districtId;
- }
- /**
- * @param mixed $districtId
- * @return UserBillEntity
- */
- public function setDistrictId($districtId): UserBillEntity
- {
- $this->districtId = $districtId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStreetId()
- {
- return $this->streetId;
- }
- /**
- * @param mixed $streetId
- * @return UserBillEntity
- */
- public function setStreetId($streetId): UserBillEntity
- {
- $this->streetId = $streetId;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMonth()
- {
- return $this->month;
- }
- /**
- * @param mixed $month
- * @return UserBillEntity
- */
- public function setMonth($month): UserBillEntity
- {
- $this->month = $month;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getNum()
- {
- return $this->num;
- }
- /**
- * @param mixed $num
- * @return UserBillEntity
- */
- public function setNum($num): UserBillEntity
- {
- $this->num = $num;
- return $this;
- }
- }
|