begin new project

This commit is contained in:
wangjinlei
2026-04-22 15:55:42 +08:00
commit 5e6bde0862
1370 changed files with 129431 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.peanut.modules.common.dao.CountyDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="com.peanut.modules.common.entity.County" id="countyMap">
<result property="countyId" column="county_id"/>
<result property="cityId" column="city_id"/>
<result property="countyName" column="county_name"/>
<result property="createDate" column="create_date"/>
<result property="regionCode" column="region_code"/>
</resultMap>
</mapper>