Commit 5bddd9d8 authored by wanghao's avatar wanghao

1 行政规划接口调整

parent e044f81a
package com.zehong.web.controller.common;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 行政区规划controller
*/
@RestController
@RequestMapping("/districtPlanning")
public class DistrictPlanningController {
}
......@@ -34,6 +34,9 @@ public class TCountyLevelRegion extends BaseEntity
@Excel(name = "0 否,1 是")
private Long fIsMajor;
// 排序
private Long seq;
public void setfId(Long fId)
{
this.fId = fId;
......@@ -80,6 +83,14 @@ public class TCountyLevelRegion extends BaseEntity
return fIsMajor;
}
public Long getSeq() {
return seq;
}
public void setSeq(Long seq) {
this.seq = seq;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
......
package com.zehong.system.service;
/**
* 行政区规划service
*
* @author zehong
* @date 2024-07-01
*/
public interface IDistrictPlanningService {
String assembleCountyByDict();
}
package com.zehong.system.service.impl;
import com.zehong.system.mapper.TCityLevelRegionMapper;
import com.zehong.system.mapper.TCountyLevelRegionMapper;
import com.zehong.system.service.IDistrictPlanningService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
/**
* @Author: zehong
* @Date: 2024/7/1 17:44
*/
@Service
public class DistrictPlanningServiceImpl implements IDistrictPlanningService {
@Resource
private TCityLevelRegionMapper cityLevelRegionMapper;
@Resource
private TCountyLevelRegionMapper countyLevelRegionMapper;
/**
* 根据配置的 市查询 县-区数据 city_under_admin_plan city_code
* @return r
*/
@Override
public String assembleCountyByDict() {
return null;
}
}
......@@ -10,10 +10,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="fCountyCode" column="f_county_code" />
<result property="fName" column="f_name" />
<result property="fIsMajor" column="f_is_major" />
<result property="seq" column="f_sql" />
</resultMap>
<sql id="selectTCountyLevelRegionVo">
select f_id, f_city_id, f_county_code, f_name, f_is_major from t_county_level_region
select f_id, f_city_id, f_county_code, f_name, f_is_major ,f_sql from t_county_level_region
</sql>
<select id="selectTCountyLevelRegionList" parameterType="TCountyLevelRegion" resultMap="TCountyLevelRegionResult">
......@@ -39,6 +40,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="fCountyCode != null and fCountyCode != ''">f_county_code,</if>
<if test="fName != null and fName != ''">f_name,</if>
<if test="fIsMajor != null">f_is_major,</if>
<if test="seq != null">f_seq,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="fId != null">#{fId},</if>
......@@ -46,6 +48,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="fCountyCode != null and fCountyCode != ''">#{fCountyCode},</if>
<if test="fName != null and fName != ''">#{fName},</if>
<if test="fIsMajor != null">#{fIsMajor},</if>
<if test="seq != null">#{seq},</if>
</trim>
</insert>
......@@ -77,7 +80,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
f_city_id,
f_county_code,
f_name,
f_is_major
f_is_major,
f_sql
)VALUES
<foreach collection="list" separator="," item="item">
(
......@@ -85,7 +89,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{item.fCityId},
#{item.fCountyCode},
#{item.fName},
#{item.fIsMajor}
#{item.fIsMajor},
#{item.sql}
)
</foreach>
</insert>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment