New file |
| | |
| | | package com.cl.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.cl.pojo.dto.AddDataDTO; |
| | | |
| | | import com.cl.pojo.entity.DataEntity; |
| | | import com.cl.pojo.vo.DataDetailVO; |
| | | import com.cl.pojo.vo.DataVO; |
| | | 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,Integer year); |
| | | |
| | | void add( AddDataDTO addDataDTO); |
| | | |
| | | 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); |
| | | } |