forked from kidgrow-microservices-platform

luliqiang
2021-03-09 daad571e9422d9b60c3970392f3aa81f4832fb61
部门信息中增加是否私有云和私有云服务器Guuid字段
4 files modified
25 ■■■■■ changed files
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-api/src/main/java/com/kidgrow/usercenter/model/SysDepartment.java 9 ●●●●● patch | view | raw | blame | history
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-api/src/main/java/com/kidgrow/usercenter/vo/HospitalListVo.java 8 ●●●●● patch | view | raw | blame | history
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml 3 ●●●●● patch | view | raw | blame | history
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml 5 ●●●●● patch | view | raw | blame | history
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-api/src/main/java/com/kidgrow/usercenter/model/SysDepartment.java
@@ -122,4 +122,13 @@
     */
    private Byte isNewScreenclient;
    /**
     * 是否私有云部署(0:否,1:是)
     */
    private Byte isPrivate;
    /**
     * 私有云服务器GUUID
     */
    private String privateServerGuuid;
}
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-api/src/main/java/com/kidgrow/usercenter/vo/HospitalListVo.java
@@ -95,6 +95,14 @@
     */
    private Integer isAnswer;
    /**
     * 是否私有云部署(0:否,1:是)
     */
    private Integer isPrivate;
    /**
     * 私有云服务器GUUID
     */
    private String privateServerGuuid;
    /**
     * 医院数据创建时间
     */
    private Date createTime;
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDepartmentMapper.xml
@@ -54,6 +54,9 @@
            <if test="p.accountsCount != null and p.accountsCount !=''">
                and accounts_count = #{p.accountsCount}
            </if>
            <if test="p.isPrivate != null and p.isPrivate !=''">
                and is_private = #{p.isPrivate}
            </if>
        </where>
    </sql>
kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml
@@ -168,6 +168,9 @@
            <if test="p.isAnswer != null and p.isAnswer !=''">
                and is_answer = #{p.isAnswer}
            </if>
            <if test="p.isPrivate != null and p.isPrivate !=''">
                and is_private = #{p.isPrivate}
            </if>
            <if test="p.hospitalState != null and p.hospitalState !=''">
                and hospital_state = #{p.hospitalState}
            </if>
@@ -264,6 +267,8 @@
        DEP.org_id,
        DEP.is_del,
        DEP.is_pay,
        DEP.is_private,
        DEP.private_server_guuid,
        DEP.enabled,
        DEP.department_link,
        DEP.department_tel,