PayExam.php 381 B

12345678910111213141516
  1. <?php
  2. namespace app\cxinv\model;
  3. class PayExam extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'exam_type' =>'int',//审核类型
  9. 'exam_id' =>'bigint',//审核id
  10. 'remark' =>'varchar',//备注
  11. 'status' =>'int',//状态
  12. 'addtime' =>'datetime',//
  13. 'updatetime' =>'datetime',//
  14. ];
  15. }