• wangxl's avatar
    77 · 24da3d9e
    wangxl authored
    24da3d9e
ComProjectFundPlanController.java 899 Bytes
package com.yiboshi.science.rest.v1;

import com.yiboshi.science.entity.ComProjectFundPlan;
import com.yiboshi.science.param.dto.ComProjectFundPlanDTO;
import com.yiboshi.science.param.query.ComProjectFundPlanQueryVO;
import com.yiboshi.science.rest.BaseController;
import com.yiboshi.science.service.ComProjectFundPlanService;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 功能:年度用款计划接口
 *
 * @author xujun
 * @version 2024-11-28
 */
@Api(tags = "com-project-fund-plan", description = "年度用款计划接口")
@RestController
@RequestMapping("/v1/science-admin/com-project-fund-plan")
public class ComProjectFundPlanController extends BaseController<ComProjectFundPlanService, ComProjectFundPlanQueryVO, ComProjectFundPlanDTO, ComProjectFundPlan> {


}