EmailContent.php 360 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Session;
  5. class EmailContent extends Model
  6. {
  7. // 表名
  8. protected $name = 'email_content';
  9. // 开启自动写入时间戳字段
  10. protected $autoWriteTimestamp = 'int';
  11. // 定义时间戳字段名
  12. protected $createTime = 'createtime';
  13. protected $updateTime = 'updatetime';
  14. }