MemberKeyword.php 418 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. *
  7. * 应用关键字 Table<ai_member_keyword>
  8. */
  9. namespace app\common\model;
  10. use think\Model;
  11. class MemberKeyword extends Model{
  12. protected $autoWriteTimestamp = true;
  13. protected $createTime = false;
  14. }