Browse Source

Merge branch 'dev' of trick9191/patient-co-management into dev

trick9191 7 years ago
parent
commit
bf8bc379ac

+ 2 - 0
patient-co-manage/wlyy-manage/src/main/java/com/yihu/wlyy/controller/common/account/CustomerController.java

@ -13,6 +13,7 @@ import com.yihu.wlyy.service.manager.patient.AdminPatientService;
import com.yihu.wlyy.service.manager.user.UserService;
import com.yihu.wlyy.service.manager.user.UserService;
import com.yihu.wlyy.service.manager.user.WlyyCustomerLogService;
import com.yihu.wlyy.service.manager.user.WlyyCustomerLogService;
import com.yihu.wlyy.util.DateUtil;
import com.yihu.wlyy.util.DateUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import io.swagger.annotations.ApiParam;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.StringUtils;
@ -34,6 +35,7 @@ import java.util.Map;
@RestController
@RestController
@RequestMapping(value = "/customer")
@RequestMapping(value = "/customer")
@SessionAttributes("current_user")
@SessionAttributes("current_user")
@Api(description = "客服系统")
public class CustomerController extends BaseController {
public class CustomerController extends BaseController {
    @Autowired
    @Autowired

+ 1 - 2
patient-co-manage/wlyy-manage/src/main/java/com/yihu/wlyy/entity/Message.java

@ -45,8 +45,6 @@ public class Message extends IdEntity {
	private String tzType;//体征类别
	private String tzType;//体征类别
	private String tzCode;//体征code
	private String tzCode;//体征code
	private Integer sex;//患者性别
	private Integer sex;//患者性别
	private String relationCode;//业务关联code,type=6时为咨询code,type=7、8、9时为续方code 11.协同服务code
	private String prescriptionStatus;//type=6续方审核状态 0待审核,1审核通过,2审核失败,3居民取消|type=7续方状态 0待取药,1已取药
	private String relationCode;//业务关联code,type=6时为咨询code,type=7、8、9时为续方code type = 10/11时为申诉和反馈ID
	private String relationCode;//业务关联code,type=6时为咨询code,type=7、8、9时为续方code type = 10/11时为申诉和反馈ID
	private String prescriptionStatus;//type=6续方审核状态 0待审核,1审核通过,2审核失败,3居民取消|type=7续方状态 0待取药,1已取药
	private String prescriptionStatus;//type=6续方审核状态 0待审核,1审核通过,2审核失败,3居民取消|type=7续方状态 0待取药,1已取药
@ -302,4 +300,5 @@ public class Message extends IdEntity {
	public void setSex(Integer sex) {
	public void setSex(Integer sex) {
		this.sex = sex;
		this.sex = sex;
	}
	}
}
}