|
|
@ -9,6 +9,7 @@ import com.hxhq.business.dto.sj.SjListDto; |
|
|
import com.hxhq.business.enums.NormalEnum; |
|
|
import com.hxhq.business.enums.NormalEnum; |
|
|
import com.hxhq.business.enums.SnTypeEnum; |
|
|
import com.hxhq.business.enums.SnTypeEnum; |
|
|
import com.hxhq.business.form.common.SignForm; |
|
|
import com.hxhq.business.form.common.SignForm; |
|
|
|
|
|
import com.hxhq.business.form.gsp.GspSearchListForm; |
|
|
import com.hxhq.business.form.gyzj.SearchForm; |
|
|
import com.hxhq.business.form.gyzj.SearchForm; |
|
|
import com.hxhq.business.form.sj.SjSearchListForm; |
|
|
import com.hxhq.business.form.sj.SjSearchListForm; |
|
|
import com.hxhq.business.form.yq.YqSearchForm; |
|
|
import com.hxhq.business.form.yq.YqSearchForm; |
|
|
@ -61,6 +62,8 @@ public class PublicController extends BaseController { |
|
|
public IYqService yqService; |
|
|
public IYqService yqService; |
|
|
@Autowired |
|
|
@Autowired |
|
|
public IGyzjService gyzjService; |
|
|
public IGyzjService gyzjService; |
|
|
|
|
|
@Autowired |
|
|
|
|
|
public IGspService gspService; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 获取编号 |
|
|
* 获取编号 |
|
|
@ -193,10 +196,10 @@ public class PublicController extends BaseController { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 查询试剂列表 |
|
|
|
|
|
|
|
|
* 查询仪器列表 |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("/yqList") |
|
|
@GetMapping("/yqList") |
|
|
public TableDataInfo list(YqSearchForm form) |
|
|
|
|
|
|
|
|
public TableDataInfo yqList(YqSearchForm form) |
|
|
{ |
|
|
{ |
|
|
startPage(); |
|
|
startPage(); |
|
|
List<Yq> list = yqService.queryList(form); |
|
|
List<Yq> list = yqService.queryList(form); |
|
|
@ -214,4 +217,14 @@ public class PublicController extends BaseController { |
|
|
return getDataTable(list); |
|
|
return getDataTable(list); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 查询供试品列表 |
|
|
|
|
|
*/ |
|
|
|
|
|
@GetMapping("/gspList") |
|
|
|
|
|
public TableDataInfo gspList(GspSearchListForm form) |
|
|
|
|
|
{ |
|
|
|
|
|
startPage(); |
|
|
|
|
|
List<Gsp> list = gspService.queryList(form); |
|
|
|
|
|
return getDataTable(list); |
|
|
|
|
|
} |
|
|
} |
|
|
} |