add: 基础架构创建

This commit is contained in:
ls
2025-02-26 20:08:54 +08:00
parent 4d907a3d02
commit 1ec5058772
46 changed files with 2193 additions and 8 deletions

View File

@@ -0,0 +1,21 @@
<?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.boge.modules.tickets.dao.TicketsDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="com.boge.modules.tickets.entity.TicketsEntity" id="ticketsMap">
<result property="ticketsId" column="tickets_id"/>
<result property="carType" column="car_type"/>
<result property="errorType" column="error_type"/>
<result property="contractNumber" column="contract_number"/>
<result property="clientId" column="client_id"/>
<result property="description" column="description"/>
<result property="deptPeople" column="dept_people"/>
<result property="deptPhone" column="dept_phone"/>
<result property="createUserId" column="create_user_id"/>
<result property="createTime" column="create_time"/>
</resultMap>
</mapper>