CarFlow.php 437 B

12345678910111213141516171819
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 用车审批流程设置
  5. class CarFlow extends Model
  6. {
  7. // 获取审批人
  8. public static function getApproveUser(){
  9. return static::where('type',1)->order('sort asc ,id asc')->select()->toArray();
  10. }
  11. // 获取抄送人
  12. public static function getCopyTo()
  13. {
  14. return static::where('type',2)->order('sort asc ,id asc')->select()->toArray();
  15. }
  16. }