主程序
This commit is contained in:
parent
8789ba6b79
commit
7f6df18ae7
@ -126,7 +126,7 @@ public class LisWorkBase {
|
|||||||
* @param logtype 操作类型
|
* @param logtype 操作类型
|
||||||
* @param logdata 备注信息
|
* @param logdata 备注信息
|
||||||
*/
|
*/
|
||||||
void setComLog(Date jyrq, String yq, String ybh, String yhdh, String logtype, String logdata) {
|
public void setComLog(Date jyrq, String yq, String ybh, String yhdh, String logtype, String logdata) {
|
||||||
ComLog comLog = new ComLog();
|
ComLog comLog = new ComLog();
|
||||||
comLog.setJyrq(jyrq);
|
comLog.setJyrq(jyrq);
|
||||||
comLog.setYq(yq);
|
comLog.setYq(yq);
|
||||||
@ -189,7 +189,7 @@ public class LisWorkBase {
|
|||||||
* @param zt 状态
|
* @param zt 状态
|
||||||
* @param yhdh 用户
|
* @param yhdh 用户
|
||||||
*/
|
*/
|
||||||
void setlabReqsteplog(String sqh, String zt, String yhdh) {
|
public void setlabReqsteplog(String sqh, String zt, String yhdh) {
|
||||||
int xh = commonUtil.getLabReqsteplogMax(sqh);
|
int xh = commonUtil.getLabReqsteplogMax(sqh);
|
||||||
xh = xh + 1;
|
xh = xh + 1;
|
||||||
LabReqsteplog labReqsteplog = new LabReqsteplog();
|
LabReqsteplog labReqsteplog = new LabReqsteplog();
|
||||||
@ -229,7 +229,7 @@ public class LisWorkBase {
|
|||||||
* @param ybh 样本号
|
* @param ybh 样本号
|
||||||
* @return 返回
|
* @return 返回
|
||||||
*/
|
*/
|
||||||
List<LabInputmdl> chkautoinput(String yq, String ybh){
|
public List<LabInputmdl> chkautoinput(String yq, String ybh){
|
||||||
|
|
||||||
List<LabInputmdl> labInputmdlList;
|
List<LabInputmdl> labInputmdlList;
|
||||||
if("1".equals(commonUtil.getHISOPT("zdsr"))){
|
if("1".equals(commonUtil.getHISOPT("zdsr"))){
|
||||||
|
|||||||
@ -1,5 +1,10 @@
|
|||||||
package com.czlis.interfaceCommon.utils;
|
package com.czlis.interfaceCommon.utils;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
@Slf4j
|
||||||
public class LisWorkUtils extends LisWorkconfirm{
|
public class LisWorkUtils extends LisWorkconfirm{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,6 +19,7 @@ import com.czlis.liswork.mapper.LisWorkMapper;
|
|||||||
|
|
||||||
import com.czlis.liswork.service.LisWorkService;
|
import com.czlis.liswork.service.LisWorkService;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@ -27,20 +28,18 @@ import java.util.stream.Collectors;
|
|||||||
@Service
|
@Service
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public class LisWorkServiceImpl implements LisWorkService {
|
public class LisWorkServiceImpl implements LisWorkService {
|
||||||
|
@Autowired
|
||||||
|
LisWorkMapper lisWorkMapper;
|
||||||
|
@Autowired
|
||||||
|
CommonUtil commonUtil;
|
||||||
|
@Autowired
|
||||||
|
LoginConfigParamUtil loginConfigParamUtil;
|
||||||
|
@Autowired
|
||||||
|
ReportUtil reportUtil;
|
||||||
|
@Autowired
|
||||||
|
LisWorkUtils lisWorkUtils;
|
||||||
|
|
||||||
private final LisWorkMapper lisWorkMapper;
|
|
||||||
private final CommonUtil commonUtil;
|
|
||||||
private final LoginConfigParamUtil loginConfigParamUtil;
|
|
||||||
private final ReportUtil reportUtil;
|
|
||||||
private final LisWorkUtils lisWorkUtils;
|
|
||||||
|
|
||||||
public LisWorkServiceImpl(LisWorkMapper lisWorkMapper, CommonUtil commonUtil, LoginConfigParamUtil loginConfigParamUtil, ReportUtil reportUtil, LisWorkUtils lisWorkUtils) {
|
|
||||||
this.lisWorkMapper = lisWorkMapper;
|
|
||||||
this.commonUtil = commonUtil;
|
|
||||||
this.loginConfigParamUtil = loginConfigParamUtil;
|
|
||||||
this.reportUtil = reportUtil;
|
|
||||||
this.lisWorkUtils = lisWorkUtils;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Result getXmInfo(String yq) {
|
public Result getXmInfo(String yq) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user