tp6框架的销售统计系统

Department.php 217B

12345678910111213
  1. <?php
  2. namespace app\model;
  3. class Department extends \think\Model
  4. {
  5. protected $schema = [
  6. 'id' => 'int',
  7. 'name' => 'string',
  8. 'director' => 'steing',
  9. 'create_time' => 'int'
  10. ];
  11. }