| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mes.damage.entity.Damage; |
| | | import com.mes.damage.entity.DamagePrint; |
| | | import com.mes.damage.entity.dto.DamageDTO; |
| | | import com.mes.damage.service.DamageService; |
| | | import com.mes.opctask.entity.LoadGlassDeviceTaskHistory; |
| | | import com.mes.utils.Result; |
| | |
| | | |
| | | @ApiOperation("报工数据查询") |
| | | @PostMapping("/selectDamage") |
| | | public Result<Page<Damage>> selectDamage(@RequestBody Map map) { |
| | | public Result<Page<DamageDTO>> selectDamage(@RequestBody Map map) { |
| | | String startTime = map.get("startTime").toString(); |
| | | String endTime = map.get("endTime").toString(); |
| | | int type = Integer.parseInt(map.get("type").toString()); |