UserHonor.php 481 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: qisse
  5. * Date: 2017/6/27
  6. * Time: 20:02
  7. */
  8. namespace app\core\model;
  9. use think\Config;
  10. use think\Log;
  11. use think\Model;
  12. use tool\Common;
  13. class UserHonor extends Model
  14. {
  15. protected $resultSetType = 'collection';
  16. protected $updateTime = 'updateTime';
  17. protected $createTime = 'addTime';
  18. protected $autoWriteTimestamp = true;
  19. const MODE_CANG = 'MODE_CANG';
  20. const MODE_SHARE = 'MODE_SHARE';
  21. const STATUS_OK = 1;
  22. }