PointAwardLog.php 655 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace app\models\point_plan;
  3. use app\models\system\SystemMoney;
  4. use app\models\user\User;
  5. use app\models\user\UserMoney;
  6. use Exception;
  7. use think\db\exception\DataNotFoundException;
  8. use think\db\exception\DbException;
  9. use think\db\exception\ModelNotFoundException;
  10. use crmeb\traits\ModelTrait;
  11. use crmeb\basic\BaseModel;
  12. /**
  13. * TODO 文章Model
  14. * Class Article
  15. * @package app\models\article
  16. */
  17. class PointAwardLog extends BaseModel
  18. {
  19. /**
  20. * 数据表主键
  21. * @var string
  22. */
  23. protected $pk = 'id';
  24. /**
  25. * 模型名称
  26. * @var string
  27. */
  28. protected $name = 'point_award_log';
  29. use ModelTrait;
  30. }