|
|
@ -11,7 +11,6 @@ import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
|
|
import com.hyp.web.controller.manager.ApplyInfoListManager;
|
|
|
|
import com.hyp.web.controller.manager.ApplyInfoListManager;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
|
|
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
|
@ -37,7 +36,6 @@ public class ApplyController extends BaseController {
|
|
|
|
private ApplyInfoListManager applyInfoListManager;
|
|
|
|
private ApplyInfoListManager applyInfoListManager;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("申请列表")
|
|
|
|
@ApiOperation("申请列表")
|
|
|
|
@PreAuthorize("@ss.hasPermi('reward:apply:list')")
|
|
|
|
|
|
|
|
@GetMapping("/list")
|
|
|
|
@GetMapping("/list")
|
|
|
|
public TableDataInfo list(ApplyInfoListDTO applyInfoListDTO) {
|
|
|
|
public TableDataInfo list(ApplyInfoListDTO applyInfoListDTO) {
|
|
|
|
startPage();
|
|
|
|
startPage();
|
|
|
@ -46,7 +44,6 @@ public class ApplyController extends BaseController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("根据奖项类型生成applyId")
|
|
|
|
@ApiOperation("根据奖项类型生成applyId")
|
|
|
|
@PreAuthorize("@ss.hasPermi('reward:apply:add')")
|
|
|
|
|
|
|
|
@Log(title = "申请保存", businessType = BusinessType.INSERT)
|
|
|
|
@Log(title = "申请保存", businessType = BusinessType.INSERT)
|
|
|
|
@GetMapping(value = "/getApplyId")
|
|
|
|
@GetMapping(value = "/getApplyId")
|
|
|
|
public AjaxResult getApplyId(@RequestParam String applyType) {
|
|
|
|
public AjaxResult getApplyId(@RequestParam String applyType) {
|
|
|
|