| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- <?php
- namespace app\entity\data\user;
- use app\entity\data\DataEntity;
- class UserBillEntity extends DataEntity
- {
- public $bill_id = null; // 用户账单id
- public $uid = null; // 用户uid
- public $link_id = null; // 关联订单id
- public $pm = null; // 0 = 支出 1 = 获得
- public $title = null; // 账单标题
- public $category = null; // 明细种类
- public $type = null; // 明细类型 commission佣金
- public $number = null; // 明细数字
- public $balance = null; // 剩余
- public $mark = null; // 备注
- public $create_time = null; // 添加时间
- public $status = null; // 0 = 待确定 1 = 有效 -1 = 无效
- public $commission_type = null; // 佣金类型
- public $order_sn = null; // 订单号
- public $tripartite = null; // 三方支付类型
- public $type_shop = null; // 平台或店铺类型
- public $mer_id = null; // 商户id
- public $source = null; // 1 线下 0线上
- public $order_type = null; // 订单类型 1自营 2 第三方
- public $is_red_brokerage = null; // 红积分对冲佣金 0正常佣金
- public $gzc = null; // 养老金是否已进入公证处log表
- public $is_gzc = null; // 养老金是否发起过
- public $take_time = null; // 结算时间
- public $district_id = null; // 区域ID
- public $street_id = null; // 街道ID
- public $month = null; // 月份
- public $num = null; // 份数
- /**
- * @return mixed
- */
- public function getBillId()
- {
- return $this->bill_id;
- }
- /**
- * @param mixed $bill_id
- * @return UserBillEntity
- */
- public function setBillId($bill_id): UserBillEntity
- {
- $this->bill_id = $bill_id;
- 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->link_id;
- }
- /**
- * @param mixed $link_id
- * @return UserBillEntity
- */
- public function setLinkId($link_id): UserBillEntity
- {
- $this->link_id = $link_id;
- 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->create_time;
- }
- /**
- * @param mixed $create_time
- * @return UserBillEntity
- */
- public function setCreateTime($create_time): UserBillEntity
- {
- $this->create_time = $create_time;
- 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->commission_type;
- }
- /**
- * @param mixed $commission_type
- * @return UserBillEntity
- */
- public function setCommissionType($commission_type): UserBillEntity
- {
- $this->commission_type = $commission_type;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getOrderSn()
- {
- return $this->order_sn;
- }
- /**
- * @param mixed $order_sn
- * @return UserBillEntity
- */
- public function setOrderSn($order_sn): UserBillEntity
- {
- $this->order_sn = $order_sn;
- 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->type_shop;
- }
- /**
- * @param mixed $type_shop
- * @return UserBillEntity
- */
- public function setTypeShop($type_shop): UserBillEntity
- {
- $this->type_shop = $type_shop;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getMerId()
- {
- return $this->mer_id;
- }
- /**
- * @param mixed $mer_id
- * @return UserBillEntity
- */
- public function setMerId($mer_id): UserBillEntity
- {
- $this->mer_id = $mer_id;
- 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->order_type;
- }
- /**
- * @param mixed $order_type
- * @return UserBillEntity
- */
- public function setOrderType($order_type): UserBillEntity
- {
- $this->order_type = $order_type;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getIsRedBrokerage()
- {
- return $this->is_red_brokerage;
- }
- /**
- * @param mixed $is_red_brokerage
- * @return UserBillEntity
- */
- public function setIsRedBrokerage($is_red_brokerage): UserBillEntity
- {
- $this->is_red_brokerage = $is_red_brokerage;
- 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->is_gzc;
- }
- /**
- * @param mixed $is_gzc
- * @return UserBillEntity
- */
- public function setIsGzc($is_gzc): UserBillEntity
- {
- $this->is_gzc = $is_gzc;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getTakeTime()
- {
- return $this->take_time;
- }
- /**
- * @param mixed $take_time
- * @return UserBillEntity
- */
- public function setTakeTime($take_time): UserBillEntity
- {
- $this->take_time = $take_time;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getDistrictId()
- {
- return $this->district_id;
- }
- /**
- * @param mixed $district_id
- * @return UserBillEntity
- */
- public function setDistrictId($district_id): UserBillEntity
- {
- $this->district_id = $district_id;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getStreetId()
- {
- return $this->street_id;
- }
- /**
- * @param mixed $street_id
- * @return UserBillEntity
- */
- public function setStreetId($street_id): UserBillEntity
- {
- $this->street_id = $street_id;
- 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;
- }
- }
|