| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\api\model\profit;
- use app\api\model\BaseModel;
- class Bill extends BaseModel
- {
- // 表名
- protected $name = 'profit_bill';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
- // 定义时间戳字段名
- protected $createTime = false;
- public function fetchProfitBill($people_type, $target_id, $page, $size)
- {
- return $this->where([
- "identity_type" => $people_type,
- "target_id" => $target_id,
- ])->order("createtime", "desc")
- ->page($page)
- ->paginate($size);
- }
- }
|