| | |
| | | <if test="land.landName!=null and land.landName != ''"> |
| | | and l.land_name like concat('%', #{land.landName},'%') |
| | | </if> |
| | | <if test="land.deptId!=null and land.deptId != ''"> |
| | | and l.dept_id=#{land.deptId} |
| | | </if> |
| | | <if test="land.type!=null and land.type != ''"> |
| | | and l.type=#{land.type} |
| | | </if> |
| | | <if test="land.tenantId!=null and land.tenantId != ''"> |
| | | and l.tenant_id =#{land.tenantId} |
| | | </if> |
| | | </select> |
| | | |
| | | <insert id="saveLandInfo"> |
| | |
| | | SELECT IFNULL(land_area, 0) as area, IFNULL(land_unit, 0) as unit |
| | | FROM sys_land |
| | | WHERE is_deleted = 0 |
| | | <if test="deptId!= null and deptId!=''"> |
| | | and dept_id=#{deptId} |
| | | </if> |
| | | </select> |
| | | <!--土地使用面积--> |
| | | <select id="selectSAre" resultType="java.util.HashMap"> |
| | | SELECT IFNULL(land_area, 0) as area, IFNULL(land_unit, 0) as unit |
| | | FROM sys_land |
| | | WHERE is_deleted = 0 |
| | | and type = 0 |
| | | and type = 0 |
| | | <if test="deptId!= null and deptId!=''"> |
| | | and dept_id=#{deptId} |
| | | </if> |
| | | </select> |
| | | <!--土地未使用面积--> |
| | | <select id="selectWAre" resultType="java.util.HashMap"> |
| | | SELECT IFNULL(land_area, 0) as area, IFNULL(land_unit, 0) as unit |
| | | FROM sys_land |
| | | WHERE is_deleted = 0 |
| | | and type = 1 |
| | | and type = 1 |
| | | <if test="deptId!= null and deptId!=''"> |
| | | and dept_id=#{deptId} |
| | | </if> |
| | | </select> |
| | | <select id="selectNum" resultType="java.util.HashMap"> |
| | | SELECT strain_id |
| | | FROM `sys_farm_plant` |
| | | WHERE status = 1 |
| | | <if test="deptId!= null and deptId!=''"> |
| | | and dept_id=#{deptId} |
| | | </if> |
| | | GROUP BY strain_id |
| | | </select> |
| | | |