parent
69c182c463
commit
aad64cae87
24 changed files with 667 additions and 0 deletions
@ -0,0 +1,62 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.lims.entry.LsAuditTrailLog; |
||||||
|
import org.springblade.lims.service.ILsAuditTrailLogService; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/lsAuditTrailLog") |
||||||
|
@Api(value = "", tags = "") |
||||||
|
public class LsAuditTrailLogController extends BladeController { |
||||||
|
|
||||||
|
private final ILsAuditTrailLogService service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<LsAuditTrailLog>> list(LsAuditTrailLog entry, Query query) { |
||||||
|
IPage<LsAuditTrailLog> page = service.page(Condition.getPage(query), Condition.getQueryWrapper(entry)); |
||||||
|
return R.data(page); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation(value = "更改", notes = "更改") |
||||||
|
public R update(@RequestBody LsAuditTrailLog entry) { |
||||||
|
return R.status(service.updateById(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/insert") |
||||||
|
public R insertExamine(@RequestBody LsAuditTrailLog entry) { |
||||||
|
return R.status(service.save(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/deleteByIds") |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R deleteByIds(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(service.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,62 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.lims.entry.LsDataStatistic; |
||||||
|
import org.springblade.lims.service.ILsDataStatisticService; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/lsDataStatistic") |
||||||
|
@Api(value = "", tags = "") |
||||||
|
public class LsDataStatisticController extends BladeController { |
||||||
|
|
||||||
|
private final ILsDataStatisticService service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<LsDataStatistic>> list(LsDataStatistic entry, Query query) { |
||||||
|
IPage<LsDataStatistic> page = service.page(Condition.getPage(query), Condition.getQueryWrapper(entry)); |
||||||
|
return R.data(page); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation(value = "更改", notes = "更改") |
||||||
|
public R update(@RequestBody LsDataStatistic entry) { |
||||||
|
return R.status(service.updateById(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/insert") |
||||||
|
public R insertExamine(@RequestBody LsDataStatistic entry) { |
||||||
|
return R.status(service.save(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/deleteByIds") |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R deleteByIds(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(service.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,62 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.lims.entry.LsEventLog; |
||||||
|
import org.springblade.lims.service.ILsEventLogService; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/lsEventLog") |
||||||
|
@Api(value = "", tags = "") |
||||||
|
public class LsEventLogController extends BladeController { |
||||||
|
|
||||||
|
private final ILsEventLogService service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<LsEventLog>> list(LsEventLog entry, Query query) { |
||||||
|
IPage<LsEventLog> page = service.page(Condition.getPage(query), Condition.getQueryWrapper(entry)); |
||||||
|
return R.data(page); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation(value = "更改", notes = "更改") |
||||||
|
public R update(@RequestBody LsEventLog entry) { |
||||||
|
return R.status(service.updateById(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/insert") |
||||||
|
public R insertExamine(@RequestBody LsEventLog entry) { |
||||||
|
return R.status(service.save(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/deleteByIds") |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R deleteByIds(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(service.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,60 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.lims.entry.LsReservedSample; |
||||||
|
import org.springblade.lims.service.ILsReservedSampleService; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/lsReservedSample") |
||||||
|
public class LsReservedSampleController extends BladeController { |
||||||
|
|
||||||
|
private final ILsReservedSampleService ilsReservedSampleService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<LsReservedSample>> list(LsReservedSample entry, Query query) { |
||||||
|
IPage<LsReservedSample> page = ilsReservedSampleService.page(Condition.getPage(query), Condition.getQueryWrapper(entry)); |
||||||
|
return R.data(page); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation(value = "更改", notes = "更改") |
||||||
|
public R update(@RequestBody LsReservedSample entry) { |
||||||
|
return R.status(ilsReservedSampleService.updateById(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/insert") |
||||||
|
public R insertExamine(@RequestBody LsReservedSample entry) { |
||||||
|
return R.status(ilsReservedSampleService.save(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/deleteByIds") |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R deleteByIds(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(ilsReservedSampleService.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,62 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.lims.entry.LsTemperatureHumidityLog; |
||||||
|
import org.springblade.lims.service.ILsTemperatureHumidityLogService; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/lsTemperatureHumidityLog") |
||||||
|
@Api(value = "", tags = "") |
||||||
|
public class LsTemperatureHumidityLogController extends BladeController { |
||||||
|
|
||||||
|
private final ILsTemperatureHumidityLogService service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<LsTemperatureHumidityLog>> list(LsTemperatureHumidityLog entry, Query query) { |
||||||
|
IPage<LsTemperatureHumidityLog> page = service.page(Condition.getPage(query), Condition.getQueryWrapper(entry)); |
||||||
|
return R.data(page); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation(value = "更改", notes = "更改") |
||||||
|
public R update(@RequestBody LsTemperatureHumidityLog entry) { |
||||||
|
return R.status(service.updateById(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/insert") |
||||||
|
public R insertExamine(@RequestBody LsTemperatureHumidityLog entry) { |
||||||
|
return R.status(service.save(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/deleteByIds") |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R deleteByIds(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(service.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,62 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.controller; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.lims.entry.LsTemplateLog; |
||||||
|
import org.springblade.lims.service.ILsTemplateLogService; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/lsTemplateLog") |
||||||
|
@Api(value = "", tags = "") |
||||||
|
public class LsTemplateLogController extends BladeController { |
||||||
|
|
||||||
|
private final ILsTemplateLogService service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
public R<IPage<LsTemplateLog>> list(LsTemplateLog entry, Query query) { |
||||||
|
IPage<LsTemplateLog> page = service.page(Condition.getPage(query), Condition.getQueryWrapper(entry)); |
||||||
|
return R.data(page); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperation(value = "更改", notes = "更改") |
||||||
|
public R update(@RequestBody LsTemplateLog entry) { |
||||||
|
return R.status(service.updateById(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/insert") |
||||||
|
public R insertExamine(@RequestBody LsTemplateLog entry) { |
||||||
|
return R.status(service.save(entry)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/deleteByIds") |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R deleteByIds(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(service.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.springblade.lims.entry.LsAuditTrailLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检测知识库明细表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2021-09-29 |
||||||
|
*/ |
||||||
|
public interface LsAuditTrailLogMapper extends BaseMapper<LsAuditTrailLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.springblade.lims.entry.LsDataStatistic; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检测知识库明细表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2021-09-29 |
||||||
|
*/ |
||||||
|
public interface LsDataStatisticMapper extends BaseMapper<LsDataStatistic> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.springblade.lims.entry.LsEventLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检测知识库明细表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2021-09-29 |
||||||
|
*/ |
||||||
|
public interface LsEventLogMapper extends BaseMapper<LsEventLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.springblade.lims.entry.LsReservedSample; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检测知识库明细表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2021-09-29 |
||||||
|
*/ |
||||||
|
public interface LsReservedSampleMapper extends BaseMapper<LsReservedSample> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.springblade.lims.entry.LsTemperatureHumidityLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检测知识库明细表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2021-09-29 |
||||||
|
*/ |
||||||
|
public interface LsTemperatureHumidityLogMapper extends BaseMapper<LsTemperatureHumidityLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import org.springblade.lims.entry.LsTemplateLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检测知识库明细表 Mapper 接口 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2021-09-29 |
||||||
|
*/ |
||||||
|
public interface LsTemplateLogMapper extends BaseMapper<LsTemplateLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.service; |
||||||
|
|
||||||
|
|
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.lims.entry.LsAuditTrailLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 样品 服务类 |
||||||
|
* |
||||||
|
* @author swj |
||||||
|
* @since 2022年6月1日19:50:34 |
||||||
|
*/ |
||||||
|
public interface ILsAuditTrailLogService extends BaseService<LsAuditTrailLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.service; |
||||||
|
|
||||||
|
|
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.lims.entry.LsDataStatistic; |
||||||
|
|
||||||
|
/** |
||||||
|
* 样品 服务类 |
||||||
|
* |
||||||
|
* @author swj |
||||||
|
* @since 2022年6月1日19:50:34 |
||||||
|
*/ |
||||||
|
public interface ILsDataStatisticService extends BaseService<LsDataStatistic> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.service; |
||||||
|
|
||||||
|
|
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.lims.entry.LsEventLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 样品 服务类 |
||||||
|
* |
||||||
|
* @author swj |
||||||
|
* @since 2022年6月1日19:50:34 |
||||||
|
*/ |
||||||
|
public interface ILsEventLogService extends BaseService<LsEventLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,10 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.service; |
||||||
|
|
||||||
|
|
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.lims.entry.LsReservedSample; |
||||||
|
|
||||||
|
public interface ILsReservedSampleService extends BaseService<LsReservedSample> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.service; |
||||||
|
|
||||||
|
|
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.lims.entry.LsTemperatureHumidityLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 样品 服务类 |
||||||
|
* |
||||||
|
* @author swj |
||||||
|
* @since 2022年6月1日19:50:34 |
||||||
|
*/ |
||||||
|
public interface ILsTemperatureHumidityLogService extends BaseService<LsTemperatureHumidityLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
package org.springblade.lims.service; |
||||||
|
|
||||||
|
|
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.lims.entry.LsTemplateLog; |
||||||
|
|
||||||
|
/** |
||||||
|
* 样品 服务类 |
||||||
|
* |
||||||
|
* @author swj |
||||||
|
* @since 2022年6月1日19:50:34 |
||||||
|
*/ |
||||||
|
public interface ILsTemplateLogService extends BaseService<LsTemplateLog> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
package org.springblade.lims.service.impl; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.lims.entry.LsAuditTrailLog; |
||||||
|
import org.springblade.lims.mapper.LsAuditTrailLogMapper; |
||||||
|
import org.springblade.lims.service.ILsAuditTrailLogService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 委托单表 服务实现类 |
||||||
|
* |
||||||
|
* @author wanghua |
||||||
|
* @since 2021-08-02 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class LsAuditTrailLogServiceImpl extends BaseServiceImpl<LsAuditTrailLogMapper, LsAuditTrailLog> implements ILsAuditTrailLogService { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
package org.springblade.lims.service.impl; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.lims.entry.LsDataStatistic; |
||||||
|
import org.springblade.lims.mapper.LsDataStatisticMapper; |
||||||
|
import org.springblade.lims.service.ILsDataStatisticService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 委托单表 服务实现类 |
||||||
|
* |
||||||
|
* @author wanghua |
||||||
|
* @since 2021-08-02 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class LsDataStatisticServiceImpl extends BaseServiceImpl<LsDataStatisticMapper, LsDataStatistic> implements ILsDataStatisticService { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
package org.springblade.lims.service.impl; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.lims.entry.LsEventLog; |
||||||
|
import org.springblade.lims.mapper.LsEventLogMapper; |
||||||
|
import org.springblade.lims.service.ILsEventLogService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 委托单表 服务实现类 |
||||||
|
* |
||||||
|
* @author wanghua |
||||||
|
* @since 2021-08-02 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class LsEventLogServiceImpl extends BaseServiceImpl<LsEventLogMapper, LsEventLog> implements ILsEventLogService { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
package org.springblade.lims.service.impl; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.lims.entry.*; |
||||||
|
import org.springblade.lims.mapper.LsReservedSampleMapper; |
||||||
|
import org.springblade.lims.service.ILsReservedSampleService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 委托单表 服务实现类 |
||||||
|
* |
||||||
|
* @author wanghua |
||||||
|
* @since 2021-08-02 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class LsReservedSampleServiceImpl extends BaseServiceImpl<LsReservedSampleMapper, LsReservedSample> implements ILsReservedSampleService { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,17 @@ |
|||||||
|
package org.springblade.lims.service.impl; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.lims.entry.LsTemperatureHumidityLog; |
||||||
|
import org.springblade.lims.mapper.LsTemperatureHumidityLogMapper; |
||||||
|
import org.springblade.lims.service.ILsTemperatureHumidityLogService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* @since 2021-08-02 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class LsTemperatureHumidityLogServiceImpl extends BaseServiceImpl<LsTemperatureHumidityLogMapper, LsTemperatureHumidityLog> implements ILsTemperatureHumidityLogService { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
package org.springblade.lims.service.impl; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.lims.entry.LsTemplateLog; |
||||||
|
import org.springblade.lims.mapper.LsTemplateLogMapper; |
||||||
|
import org.springblade.lims.service.ILsTemplateLogService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* 委托单表 服务实现类 |
||||||
|
* |
||||||
|
* @author wanghua |
||||||
|
* @since 2021-08-02 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class LsTemplateLogServiceImpl extends BaseServiceImpl<LsTemplateLogMapper, LsTemplateLog> implements ILsTemplateLogService { |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue