初始化

This commit is contained in:
lhx
2025-11-12 11:45:35 +08:00
parent 24ad0eadca
commit e1ae4b80b1
88 changed files with 2858 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?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.dc.dc_project.mapper.UserMapper">
<resultMap id="BaseResultMap" type="com.dc.dc_project.model.pojo.User">
<id property="id" column="id" />
<result property="username" column="username" />
<result property="password" column="password" />
<result property="real_name" column="real_name" />
<result property="gender" column="gender" />
<result property="phone" column="phone" />
<result property="email" column="email" />
<result property="org_id" column="org_id" />
<result property="status" column="status" />
<result property="last_login_time" column="last_login_time" />
<result property="remark" column="remark" />
<result property="created_at" column="created_at" />
<result property="updated_at" column="updated_at" />
<result property="is_deleted" column="is_deleted" />
</resultMap>
<sql id="Base_Column_List">
id,username,password,real_name,gender,phone,
email,org_id,status,last_login_time,remark,
created_at,updated_at,is_deleted
</sql>
</mapper>