| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- /**
- +-----------------------------------------------------------------------------------------------
- * GouGuOPEN [ 左手研发,右手开源,未来可期!]
- +-----------------------------------------------------------------------------------------------
- * @Copyright (c) 2021~2024 http://www.gouguoa.com All rights reserved.
- +-----------------------------------------------------------------------------------------------
- * @Licensed 勾股OA,开源且可免费使用,但并不是自由软件,未经授权许可不能去除勾股OA的相关版权信息
- +-----------------------------------------------------------------------------------------------
- * @Author 勾股工作室 <hdm58@qq.com>
- +-----------------------------------------------------------------------------------------------
- */
- namespace app\user\model;
- use think\model;
- class RewardsCate extends Model
- {
- /**
- * 获取分页列表
- * @param $where
- * @param $param
- */
- public function getList($where, $param)
- {
- $rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
- $order = empty($param['order']) ? 'id desc' : $param['order'];
- try {
- $list = $this->where($where)->order($order)->paginate(['list_rows'=> $rows]);
- return $list;
- } catch(\Exception $e) {
- return ['code' => 1, 'data' => [], 'msg' => $e->getMessage()];
- }
- }
- /**
- * 添加数据
- * @param $param
- */
- public function add($param)
- {
- $insertId = 0;
- try {
- $param['create_time'] = time();
- $insertId = $this->strict(false)->field(true)->insertGetId($param);
- add_log('add', $insertId, $param);
- } catch(\Exception $e) {
- return to_assign(1, '操作失败,原因:'.$e->getMessage());
- }
- return to_assign(0,'操作成功',['aid'=>$insertId]);
- }
- /**
- * 编辑信息
- * @param $param
- */
- public function edit($param)
- {
- try {
- $param['update_time'] = time();
- $this->where('id', $param['id'])->strict(false)->field(true)->update($param);
- add_log('edit', $param['id'], $param);
- } catch(\Exception $e) {
- return to_assign(1, '操作失败,原因:'.$e->getMessage());
- }
- return to_assign();
- }
-
- /**
- * 根据id获取信息
- * @param $id
- */
- public function getById($id)
- {
- $info = $this->where('id', $id)->find();
- return $info;
- }
- }
|