|
@@ -12,6 +12,7 @@ import com.yonge.cooleshow.biz.dal.service.TenantActivationCodeService;
|
|
import com.yonge.cooleshow.biz.dal.wrapper.TenantActivationCodeWrapper;
|
|
import com.yonge.cooleshow.biz.dal.wrapper.TenantActivationCodeWrapper;
|
|
import com.yonge.cooleshow.common.controller.BaseController;
|
|
import com.yonge.cooleshow.common.controller.BaseController;
|
|
import com.yonge.cooleshow.common.entity.HttpResponseResult;
|
|
import com.yonge.cooleshow.common.entity.HttpResponseResult;
|
|
|
|
+import com.yonge.cooleshow.common.enums.EActivationCode;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -54,6 +55,7 @@ public class TenantActivationCodeController extends BaseController {
|
|
if (student == null) {
|
|
if (student == null) {
|
|
throw new BizException("学生不存在");
|
|
throw new BizException("学生不存在");
|
|
}
|
|
}
|
|
|
|
+ query.setSendStatus(EActivationCode.SEND);
|
|
query.setActivationPhone(sysUser.getPhone());
|
|
query.setActivationPhone(sysUser.getPhone());
|
|
query.setTenantId(student.getTenantId());
|
|
query.setTenantId(student.getTenantId());
|
|
// 查询数据
|
|
// 查询数据
|