WorkerThird.php 246 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class WorkerThird extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'name' => 'string',
  10. 'contact' => 'string',
  11. 'card_no' => 'string',
  12. ];
  13. }