| | |
| | | import com.cl.pojo.vo.EditDataDTO; |
| | | import com.cl.pojo.vo.screen.ScreenVO; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface DataService extends IService<DataEntity> { |
| | | ScreenVO screen(Integer county); |
| | | |
| | | void add( AddDataDTO addDataDTO); |
| | | |
| | | IPage<DataVO> pageList(IPage<DataEntity> page, Integer county, String name); |
| | | IPage<DataVO> pageList(IPage<DataEntity> page, List<Integer> county, String name); |
| | | |
| | | void delete(Integer id); |
| | | |
| | | void edit( EditDataDTO editDataDTO); |
| | | |
| | | DataDetailVO detail(Integer id); |
| | | |
| | | DataDetailVO addDetail(Integer county); |
| | | |
| | | List<Integer> getYearList(Integer county); |
| | | |
| | | Integer getAssistiveDeviceTotal(Integer county, Integer year); |
| | | } |