zhongrj
2023-12-28 8a66a84e3256f49d973ed827f16c5cfe9736667d
src/main/java/org/springblade/modules/house/mapper/HouseholdMapper.xml
@@ -85,6 +85,7 @@
        <collection property="householdLabelList" javaType="java.util.List"
                    ofType="org.springblade.modules.house.vo.HouseholdLabelVO" autoMapping="true">
            <id property="id" column="cid"/>
            <id property="houseCode" column="houseCodes"/>
            <result property="remark" column="cremark"/>
        </collection>
    </resultMap>
@@ -223,7 +224,15 @@
    <select id="getHouseholdListByCode" resultMap="householdAndLabelMap" >
        select
            jh.*,
            jhl.id as cid,jhl.*,jhl.remark as cremark
            jhl.id as cid,
            jhl.house_code houseCodes,
            jhl.label_id,
            jhl.label_name,
            jhl.color,
            jhl.user_id,
            jhl.lable_type,
            jhl.household_id,
            jhl.remark as cremark
        from jczz_household jh
        left join jczz_user_house_label jhl on jh.id = jhl.household_id
        where 1=1 and jh.is_deleted = 0
@@ -234,7 +243,15 @@
    <select id="getHouseholdListById" resultMap="householdAndLabelMap" >
        select
            jh.*,
            jhl.id as cid,jhl.*,jhl.remark as cremark
            jhl.id as cid,
            jhl.house_code houseCodes,
            jhl.label_id,
            jhl.label_name,
            jhl.color,
            jhl.user_id,
            jhl.lable_type,
            jhl.household_id,
            jhl.remark as cremark
        from jczz_household jh
        left join jczz_user_house_label jhl on jh.id = jhl.household_id
        where 1=1 and is_deleted = 0