ChildTaskPlanController.java
407 Bytes
package com.bsth.controller.realcontrol;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.bsth.controller.BaseController;
import com.bsth.entity.realcontrol.ChildTaskPlan;
@RestController
@RequestMapping("/childTask")
public class ChildTaskPlanController extends BaseController<ChildTaskPlan, Long>{
}