VoteModel.php 387 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. class VoteModel extends BaseModel
  4. {
  5. // 设置表名
  6. protected $name = 'vote';
  7. //自动完成
  8. protected $autoWriteTimestamp = true;
  9. // 设置字段自动转换类型
  10. protected $type = [
  11. 'start_time' => 'timestamp:Y-m-d H:i:s',
  12. 'end_time' => 'timestamp:Y-m-d H:i:s',
  13. 'option' => 'array',
  14. ];
  15. }