门诊采血查询数据集去除分页代理
This commit is contained in:
parent
265af8a7a2
commit
f243c60ca2
@ -33,10 +33,8 @@ public class MZCXController extends BaseController {
|
|||||||
*/
|
*/
|
||||||
@ApiOperation("获取申请单信息")
|
@ApiOperation("获取申请单信息")
|
||||||
@GetMapping("/querySQD")
|
@GetMapping("/querySQD")
|
||||||
public TableDataInfo querySQD(String brdh,String stime,String etime,String klx){
|
public Result querySQD(String brdh,String stime,String etime,String klx,String zt){
|
||||||
startPage();
|
return mzcxService.querySQD(brdh,stime,etime,klx,zt);
|
||||||
List<MzcxSqdDTO> mzcxSqdDTOList = mzcxService.querySQD(brdh,stime,etime,klx);
|
|
||||||
return getDataTable( mzcxSqdDTOList);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
package com.czlis.mzcx.service;
|
package com.czlis.mzcx.service;
|
||||||
|
|
||||||
|
import com.czlis.common.core.domain.Result;
|
||||||
import com.czlis.mzcx.pojo.MzcxSqdDTO;
|
import com.czlis.mzcx.pojo.MzcxSqdDTO;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public interface MZCXService {
|
public interface MZCXService {
|
||||||
List<MzcxSqdDTO> querySQD(String brdh, String stime, String etime, String klx);
|
Result querySQD(String brdh, String stime, String etime, String klx, String zt);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
package com.czlis.mzcx.service.impl;
|
package com.czlis.mzcx.service.impl;
|
||||||
|
|
||||||
|
import com.czlis.common.core.domain.Result;
|
||||||
import com.czlis.mzcx.mapper.MZCXMapper;
|
import com.czlis.mzcx.mapper.MZCXMapper;
|
||||||
import com.czlis.mzcx.pojo.MzcxSqdDTO;
|
import com.czlis.mzcx.pojo.MzcxSqdDTO;
|
||||||
import com.czlis.mzcx.service.MZCXService;
|
import com.czlis.mzcx.service.MZCXService;
|
||||||
@ -17,15 +18,15 @@ public class MZCXServiceImpl implements MZCXService {
|
|||||||
MZCXMapper mzcxMapper;
|
MZCXMapper mzcxMapper;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<MzcxSqdDTO> querySQD(String brdh, String stime, String etime, String klx) {
|
public Result querySQD(String brdh, String stime, String etime, String klx,String zt) {
|
||||||
Map<String, Object> map = new HashMap<>();
|
Map<String, Object> map = new HashMap<>();
|
||||||
map.put("brdh", brdh);
|
map.put("brdh", brdh);
|
||||||
map.put("st", stime);
|
map.put("st", stime);
|
||||||
map.put("et", etime);
|
map.put("et", etime);
|
||||||
map.put("klx", klx);
|
map.put("klx", klx);
|
||||||
map.put("zt","1");
|
map.put("zt",zt);
|
||||||
map.put("as_yljg","1");
|
map.put("as_yljg","1");
|
||||||
return mzcxMapper.querySQD(map);
|
return new Result("0","修改条码成功!",mzcxMapper.querySQD(map));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user