| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.dto.DataComparisonDto; |
| | | import com.yuanchu.mom.dto.DataReportingPageDto; |
| | | import com.yuanchu.mom.dto.ProductCountDto; |
| | | import com.yuanchu.mom.dto.RegistrantCountDto; |
| | | import com.yuanchu.mom.pojo.DataReporting; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | |
| | | |
| | | IPage<RegistrantCountDto> selectRegistrantCountDtoPageList(IPage<RegistrantCountDto> page, QueryWrapper<RegistrantCountDto> ew); |
| | | |
| | | Map<String, BigDecimal> getDataFor1(); |
| | | |
| | | List<Map<String, String>> getDataFor2(); |
| | | |
| | | List<Map<String, String>> getDataFor3(); |
| | | |
| | | List<Map<String, String>> getDataFor4(); |
| | | |
| | | List<Map<String, String>> getDataFor5(); |
| | | |
| | | Map<String, String> selectUser(Integer userId); |
| | | |
| | | IPage<DataComparisonDto> selectDataComparisonDtoPageList(Page page, DataComparisonDto dataComparisonDto); |
| | | |
| | | List<String> selectDataReportingForCreateUserNames(String time); |
| | | |
| | | List<String> selectDataReportingForProduct(String time); |
| | | |
| | | String getUserNameById(Integer id); |
| | | |
| | | String getUserDepartmentById(Integer id); |
| | | } |
| | | |
| | | |