智慧农业后台管理
zengh
2022-07-09 d48d6e9bb0bb48f8338798d8a2cba60396e16698
src/main/java/org/springblade/modules/lang/mapper/LandMapper.xml
@@ -56,6 +56,33 @@
        </if>
    </select>
    <!--查询地块列表(不分页)-->
    <select id="getLandList" resultType="org.springblade.modules.lang.vo.LandVO">
        SELECT
        id,
        land_name,
        land_area,
        ST_ASTEXT(land_range) as land_range,
        url
        FROM sys_land
        where is_deleted = 0
        <if test="land.landType!=null and land.landType != ''">
            and land_type = #{land.landType}
        </if>
        <if test="land.landName!=null and land.landName != ''">
            and land_name like concat('%', #{land.landName},'%')
        </if>
        <if test="land.deptId!=null and land.deptId != ''">
            and dept_id=#{land.deptId}
        </if>
        <if test="land.type!=null and land.type != ''">
            and type=#{land.type}
        </if>
        <if test="land.tenantId!=null and land.tenantId != ''">
            and tenant_id =#{land.tenantId}
        </if>
    </select>
    <insert id="saveLandInfo">
        insert into sys_land
        (user_id,land_name,land_type,land_area,land_range,type,land_unit,dept_id,url)