From b3438555aca0e0fbc944d78dd589d67960db4eb2 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Fri, 19 May 2023 08:50:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=BA=E6=A1=A3=E4=B8=8E=E4=BC=98=E6=83=A0?= =?UTF-8?q?=E5=88=B8=E5=88=86=E5=BC=80=E5=8A=9F=E8=83=BD:=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=9C=BA=E6=9E=84=E7=B1=BB=E5=9E=8BorgType=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../operate/web/result/PatientManagerQueryModel.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java index f9399eb..afa8889 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java @@ -120,6 +120,19 @@ public class PatientManagerQueryModel { private String level; //领劵社区 private String couponCommunity; + /** + * 机构类型 + * 1:卫生与计划生育委员会,2:妇幼保健院/站,3:妇产(科)医院,4:综合医院,5:计生站,6:卫生院,7:卫生所,8:其他 + */ + private Integer orgType; + + public Integer getOrgType() { + return orgType; + } + + public void setOrgType(Integer orgType) { + this.orgType = orgType; + } public String getCouponCommunity() { return couponCommunity; -- 1.8.3.1