WorkFlowSubDetail.php 449 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WorkFlowSubDetail extends Model
  5. {
  6. protected $table = "workflow_sub_detail"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. protected $dateFormat = 'U';
  10. // 0 发起人 1审批 2抄送 3条件 4路由
  11. const type_zero = 0;
  12. const type_one = 1;
  13. const type_two = 2;
  14. const type_three = 3;
  15. const type_four = 4;
  16. }