package org.jeecg.modules.lims.testing.service.impl;
|
|
import org.jeecg.modules.lims.testing.entity.LimsTestingStandCond;
|
import org.jeecg.modules.lims.testing.mapper.LimsTestingStandCondMapper;
|
import org.jeecg.modules.lims.testing.service.ILimsTestingStandCondService;
|
import org.springframework.stereotype.Service;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
/**
|
* @Description: lims_testing_stand_cond
|
* @Author: jeecg-boot
|
* @Date: 2023-05-11
|
* @Version: V1.0
|
*/
|
@Service
|
public class LimsTestingStandCondServiceImpl extends ServiceImpl<LimsTestingStandCondMapper, LimsTestingStandCond> implements ILimsTestingStandCondService {
|
|
}
|