|
@ -285,9 +285,9 @@ public class GuahaoController {
|
|
@RequestMapping(value = "/imm/GetOrgNumberList",method = RequestMethod.POST)
|
|
@RequestMapping(value = "/imm/GetOrgNumberList",method = RequestMethod.POST)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
@ApiOperation("计免:获取免疫接种号源")
|
|
@ApiOperation("计免:获取免疫接种号源")
|
|
public Result GetOrgNumberList(@ApiParam(name="orgId",value="机构编码",defaultValue = "")
|
|
|
|
|
|
public Result GetOrgNumberList(@ApiParam(name="orgId",value="机构编码",defaultValue = "350206")
|
|
@RequestParam String orgId,
|
|
@RequestParam String orgId,
|
|
@ApiParam(name="ScheduleId",value="排班ID",defaultValue = "")
|
|
|
|
|
|
@ApiParam(name="ScheduleId",value="排班ID",defaultValue = "350211B10402017080901")
|
|
@RequestParam String ScheduleId)
|
|
@RequestParam String ScheduleId)
|
|
{
|
|
{
|
|
try {
|
|
try {
|
|
@ -304,16 +304,16 @@ public class GuahaoController {
|
|
@RequestMapping(value = "/imm/GetOrgScheduleList",method = RequestMethod.POST)
|
|
@RequestMapping(value = "/imm/GetOrgScheduleList",method = RequestMethod.POST)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
@ApiOperation("计免:获取免疫接种排班信息")
|
|
@ApiOperation("计免:获取免疫接种排班信息")
|
|
public Result GetOrgScheduleList(@ApiParam(name="OrgCode",value="机构编码",defaultValue = "")
|
|
|
|
|
|
public Result GetOrgScheduleList(@ApiParam(name="OrgCode",value="机构编码",defaultValue = "350211B1040")
|
|
@RequestParam String OrgCode,
|
|
@RequestParam String OrgCode,
|
|
@ApiParam(name="strStart",value="开始日期",defaultValue = "")
|
|
|
|
@RequestParam String strStart,
|
|
|
|
@ApiParam(name="strEnd",value="结束日期",defaultValue = "")
|
|
|
|
@RequestParam String strEnd)
|
|
|
|
|
|
@ApiParam(name="StartTime",value="开始日期",defaultValue = "2017-08-09")
|
|
|
|
@RequestParam String StartTime,
|
|
|
|
@ApiParam(name="EndTime",value="结束日期",defaultValue = "2017-08-10")
|
|
|
|
@RequestParam String EndTime)
|
|
{
|
|
{
|
|
try {
|
|
try {
|
|
|
|
|
|
String data = guahaoService.GetOrgScheduleList(OrgCode,strStart,strEnd);
|
|
|
|
|
|
String data = guahaoService.GetOrgScheduleList(OrgCode,StartTime,EndTime);
|
|
|
|
|
|
return Result.success("获取免疫接种排班信息!",data);
|
|
return Result.success("获取免疫接种排班信息!",data);
|
|
} catch (Exception ex) {
|
|
} catch (Exception ex) {
|