Company.php 348 B

123456789101112131415
  1. <?php
  2. namespace app\bug\model;
  3. class Company extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'name' =>'varchar',//公司平台名称
  9. 'status' =>'int',//状态
  10. 'addtime' =>'datetime',//添加时间
  11. 'updatetime' =>'datetime',//更新时间
  12. ];
  13. }