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,15 @@
<?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.ProvinceDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="com.peanut.modules.common.entity.Province" id="provinceMap">
<result property="provId" column="prov_id"/>
<result property="provName" column="prov_name"/>
<result property="createDate" column="create_date"/>
<result property="regionCode" column="region_code"/>
</resultMap>
</mapper>