<?php namespace app\admin\model; use think\Model; //数据共享规则 class DataShare extends Model { protected $table = 'wsm_data_share'; protected $pk = 'id'; protected $autoWriteTimestamp = false; public static $status_启用 = 1;//状态:1启用 public static $status_禁用 = 0;//状态:0禁用 public static $delete_正常 = 0;//0未删除 public static $delete_删除 = 1;//1删除 public static $type_只读 = 2;//2只读 public static $type_读写 = 1;//1读写 }