12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace app\admin\model;
- use think\model;
- use app\admin\model\Keywords;
- use think\facade\Db;
- class ProjectComment extends Model
- {
- /**
- * 添加数据
- * @param $param
- */
- public function addComment($param)
- {
- $insertId = 0;
- try {
- $param['create_time'] = time();
- $insertId = self::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 editComment($param)
- {
- try {
- $param['update_time'] = time();
- self::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 getCommentById($id)
- {
- $info = self::where('id', $id)->find();
- return $info;
- }
- /**
- * 删除信息
- * @param $id
- * @return array
- */
- public function delCommentById($id,$type=0)
- {
- if($type==0){
- //逻辑删除
- try {
- $param['delete_time'] = time();
- self::where('id', $id)->update(['delete_time'=>time()]);
- add_log('delete', $id);
- } catch(\Exception $e) {
- return to_assign(1, '操作失败,原因:'.$e->getMessage());
- }
- }
- else{
- //物理删除
- try {
- self::where('id', $id)->delete();
- add_log('delete', $id);
- } catch(\Exception $e) {
- return to_assign(1, '操作失败,原因:'.$e->getMessage());
- }
- }
- return to_assign();
- }
- }
|