Commit 1e081524 authored by qinhaitao's avatar qinhaitao

修改路径

parent 3858a3a8
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { services, checkParams, registeInfos } from '../decorator/common' import { services, checkParams, registeInfos } from '../decorator/common'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { AwardsService } from '../service' import { AwardsService } from '../service/common'
import preCheck from '../decorator/common/preCheck' import preCheck from '../decorator/common/preCheck'
import { import {
checkActivityTime, checkActivityTime,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { services, checkParams, registeInfos, noCheckUser } from '../decorator/common' import { services, checkParams, registeInfos, noCheckUser } from '../decorator/common'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { BaseService } from '../service' import { BaseService } from '../service/common'
export default class BaseController { export default class BaseController {
/** /**
* 活动基本信息 * 活动基本信息
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { services, checkParams, preCheck, preUpdate } from '../decorator/common' import { services, checkParams, preCheck, preUpdate } from '../decorator/common'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { UserService, GameService } from '../service' import { UserService, GameService } from '../service/common'
import { checkActivityTime, checkJoinId, checkUserInfo, checkVip } from '../utils/common/check' import { checkActivityTime, checkJoinId, checkUserInfo, checkVip } from '../utils/common/check'
import { updateUserInfo } from '../utils/common/update' import { updateUserInfo } from '../utils/common/update'
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { services, checkParams, registeInfos, preUpdate } from '../decorator/common' import { services, checkParams, registeInfos, preUpdate } from '../decorator/common'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { UserService, AccessService } from '../service' import { UserService, AccessService } from '../service/common'
import { noCheckUser } from '../decorator/common' import { noCheckUser } from '../decorator/common'
export default class LoginController { export default class LoginController {
/** /**
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { services, preCheck, registeInfos, preUpdate, checkParams } from '../decorator/common/' import { services, preCheck, registeInfos, preUpdate, checkParams } from '../decorator/common/'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { UserService, StatService, TaskService } from '../service' import { UserService, StatService, TaskService } from '../service/common'
import { STAT_TYPE } from '../constants' import { STAT_TYPE } from '../constants'
import { checkActivityTime, checkInviteId, checkHelpRecord, checkNewVip } from '../utils/common/check' import { checkActivityTime, checkInviteId, checkHelpRecord, checkNewVip } from '../utils/common/check'
import { updateVip } from '../utils/common/update/' import { updateVip } from '../utils/common/update/'
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { checkParams, services } from '../decorator/common' import { checkParams, services } from '../decorator/common'
import { StatService } from '../service' import { StatService } from '../service/common'
/** @format */ /** @format */
export default class StatController { export default class StatController {
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
import { checkParams, services, registeInfos, preCheck } from '../decorator/common' import { checkParams, services, registeInfos, preCheck } from '../decorator/common'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { TaskService, BaseService } from '../service' import { TaskService, BaseService } from '../service/common'
import { ITaskInfo } from '../service/task.service' import { ITaskInfo } from '../service/common/task.service'
import { checkActivityTime, checkTaskLimit, checkExchangeCreditsTask, checkRemainTimes } from '../utils/common/check/' import { checkActivityTime, checkTaskLimit, checkExchangeCreditsTask, checkRemainTimes } from '../utils/common/check/'
import { preUpdate } from '../decorator/common' import { preUpdate } from '../decorator/common'
import { updateVip, updateSignTask, updateOrderGoods } from '../utils/common/update' import { updateVip, updateSignTask, updateOrderGoods } from '../utils/common/update'
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { services, checkParams, registeInfos } from '../decorator/common' import { services, checkParams, registeInfos } from '../decorator/common'
import { resultsModel } from '../sdk' import { resultsModel } from '../sdk'
import { UserService } from '../service' import { UserService } from '../service/common'
interface IRankList { interface IRankList {
userNick: string userNick: string
......
/** @format */ /** @format */
import { isEmpty, merge } from 'lodash' import { isEmpty, merge } from 'lodash'
import { UserService } from '../../service' import { UserService } from '../../service/common'
import { recordErrorLog } from '../../utils/common/logger' import { recordErrorLog } from '../../utils/common/logger'
import { resultsModel } from '../../sdk' import { resultsModel } from '../../sdk'
import { CODE_TYPES } from '../../errorCode' import { CODE_TYPES } from '../../errorCode'
......
/** @format */ /** @format */
import { UserService, BaseService } from '../../service' import { UserService, BaseService } from '../../service/common'
import { getSellerSession } from '../../utils' import { getSellerSession } from '../../utils'
import { formatVipCbUrl, getShopVip } from '../../utils/common/vip' import { formatVipCbUrl, getShopVip } from '../../utils/common/vip'
import { CODE_TYPES } from '../../errorCode' import { CODE_TYPES } from '../../errorCode'
......
...@@ -4,7 +4,7 @@ import { logFn, recordErrorLog } from '../../utils' ...@@ -4,7 +4,7 @@ import { logFn, recordErrorLog } from '../../utils'
import { resultsModel } from '../../sdk' import { resultsModel } from '../../sdk'
import { CODE_TYPES } from '../../constants' import { CODE_TYPES } from '../../constants'
import { doHandler } from '../../utils/' import { doHandler } from '../../utils/'
import { UserService, BaseService } from '../../service' import { UserService, BaseService } from '../../service/common'
type Constructor = new (...args: any[]) => {} type Constructor = new (...args: any[]) => {}
......
...@@ -8,6 +8,7 @@ import { BaseDao, TBAPIS } from '../../sdk' ...@@ -8,6 +8,7 @@ import { BaseDao, TBAPIS } from '../../sdk'
import { JOIN_DB_NAME } from '../../db' import { JOIN_DB_NAME } from '../../db'
import { ACTIVITY_STATUS } from '../../constants' import { ACTIVITY_STATUS } from '../../constants'
import { getToday } from '../../utils' import { getToday } from '../../utils'
import UserService from './user.service'
export default class GameService extends UserService { export default class GameService extends UserService {
context: IContext<IParams> context: IContext<IParams>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment