feat: 移植工程
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.cxx.home.service;
|
||||
|
||||
import com.cxx.common.dto.plan.PlanDto;
|
||||
import com.cxx.common.dto.plan.PlanStatsDto;
|
||||
import com.cxx.common.vo.plan.PlanQueryVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface PlanService {
|
||||
Boolean addPlan(PlanDto planDto);
|
||||
|
||||
Boolean updatePlan(Long id, PlanDto planDto);
|
||||
|
||||
Boolean deletePlan(Long id);
|
||||
|
||||
List<PlanDto> queryPlan(PlanQueryVo query);
|
||||
|
||||
Boolean setPlanStatus(Long id, Boolean status);
|
||||
|
||||
PlanStatsDto queryPlanStats();
|
||||
}
|
||||
Reference in New Issue
Block a user