Introduce.php 438 B

123456789101112131415161718192021222324
  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 UserIntroduceCash extends Model
  14. {
  15. protected $resultSetType = 'collection';
  16. protected $updateTime = false;
  17. protected $createTime = 'addTime';
  18. protected $autoWriteTimestamp = true;
  19. const STATUS_OK = 1;
  20. const STATUS_ERROR = 1;
  21. }