1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\admin\model;
- use think\Db;
- use think\Model;
- class Intention extends Model
- {
- // 表名
- protected $table = 'intention';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
-
- // 追加属性
- protected $append = [
- ];
- /**
- * 增加新的单位性质
- */
- public static function addUnitType($name)
- {
- $res = Db::table('unit_type')
- ->where('name',$name)
- ->find();
- if(!$res){
- Db::table('unit_type')->insert(['name'=>$name]);
- }
- }
-
-
- }
|