OcrType.php 409 B

12345678910111213141516171819
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Exception;
  4. use think\Model;
  5. /**
  6. * ocr识别类型
  7. */
  8. class OcrType Extends Model {
  9. protected $name = 'qingdongams_ocr_type';
  10. // 开启自动写入时间戳字段
  11. protected $autoWriteTimestamp = 'int';
  12. // 定义时间戳字段名
  13. protected $createTime = 'createtime';
  14. protected $updateTime = 'updatetime';
  15. }