12345678910111213141516171819 |
- <?php
- namespace app\common\model;
- use think\Model;
- // 用车审批流程设置
- class CarFlow extends Model
- {
- // 获取审批人
- public static function getApproveUser(){
- return static::where('type',1)->order('sort asc ,id asc')->select()->toArray();
- }
- // 获取抄送人
- public static function getCopyTo()
- {
- return static::where('type',2)->order('sort asc ,id asc')->select()->toArray();
- }
- }
|