| | |
| | | import com.ruoyi.project.system.mapper.SysUserMapper; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | |
| | | @RestController |
| | | @Api(tags = "计量器具台账") |
| | | @RequestMapping("/measuringInstrumentLedger") |
| | | @AllArgsConstructor |
| | | public class MeasuringInstrumentLedgerController extends BaseController { |
| | | |
| | | @Autowired |
| | | private MeasuringInstrumentLedgerService measuringInstrumentLedgerService; |
| | | |
| | | @Autowired |
| | | private SysUserMapper sysUserMapper; |
| | | |
| | | @Autowired |
| | | private MeasuringInstrumentLedgerRecordMapper measuringInstrumentLedgerRecordMapper; |
| | | private final MeasuringInstrumentLedgerService measuringInstrumentLedgerService; |
| | | private final SysUserMapper sysUserMapper; |
| | | private final MeasuringInstrumentLedgerRecordMapper measuringInstrumentLedgerRecordMapper; |
| | | |
| | | |
| | | @GetMapping("/listPage") |