12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace app\common\model;
- use app\hander\HelpHander;
- use think\Db;
- use think\Exception;
- use think\Model;
- class UserPunishment extends Model
- {
- public function add(){
- $data = [
- 'id' => input('id/d',0),
- 'user_id' => input('uid/d',0),
- 'start' => input('start',null,'trim'),
- 'type' => input('type','','trim'),
- 'company' => input('company','','trim'),
- 'remark' => input('remark','','trim'),
- 'reason' => input('reason','','trim'),
- ];
- $result = validate('UserPunishment')->check($data,[],'');
- if(true !== $result){
- HelpHander::error(validate('UserPunishment')->getError());
- }
- $id = $data['id'];
- unset($data['id']);
- if($id > 0){
- $data['update_time'] = date('Y-m-d H:i:s');
- $ret = $this->allowField(true)->save($data,['id'=>$id]);
- }else{
- $data['create_time'] = date('Y-m-d H:i:s');
- $ret = $this->allowField(true)->save($data);
- }
- if(!$ret){
- HelpHander::error('操作失败');
- }
- return true;
- }
- public function info($id){
- $info = $this->where('id',$id)->find();
- if(!$info){
- HelpHander::error('数据不存在');
- }
- $data = $info->toArray();
- return $data;
- }
- public function lists($page,$size,$uid){
- $lists = Db::name('user_punishment')
- ->where('user_id',$uid)
- ->page($page,$size)
- ->order('id desc')
- ->select();
- $total = Db::name('user_punishment')->where('user_id',$uid)->count();
- $data = [
- 'total' => $total,
- 'list' => $lists?$lists:[]
- ];
- return $data;
- }
- public function del($id){
- $ret = $this->where('id',$id)->delete();
- if(!$ret){
- HelpHander::error('删除失败');
- }
- return true;
- }
- }
|