ZeroUserProfitDetailDao.php 270 B

123456789101112131415
  1. <?php
  2. namespace app\common\dao\profit;
  3. use app\common\dao\BaseDao;
  4. use app\common\model\profit\ZeroUserProfitsDetail;
  5. class ZeroUserProfitDetailDao extends BaseDao
  6. {
  7. protected function getModel(): string
  8. {
  9. return ZeroUserProfitsDetail::class;
  10. }
  11. }