12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace huo\logic\finance;
- use huo\model\common\CommonModel;
- use huo\model\finance\SettleHistoryModel;
- class SettleHistoryLogic extends CommonModel {
-
- public function getList($map) {
- $_data = (new SettleHistoryModel())->with('user')->where($map)->order('create_time desc')->select();
- if (is_object($_data)) {
- $_data = $_data->toArray();
- }
- return $_data;
- }
- }
|