筹建部分表init

This commit is contained in:
苏竹红
2024-04-22 13:51:17 +08:00
parent 38c3e67580
commit 8bad906817
24 changed files with 2472 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?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.cool.store.mapper.OpeningOperationPlanMapper">
<resultMap id="BaseResultMap" type="com.cool.store.entity.OpeningOperationPlanDO">
<!--
WARNING - @mbg.generated
-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="shop_id" jdbcType="BIGINT" property="shopId" />
<result column="plan_source" jdbcType="BIT" property="planSource" />
<result column="survey_result" jdbcType="VARCHAR" property="surveyResult" />
<result column="survey_result_url" jdbcType="VARCHAR" property="surveyResultUrl" />
<result column="activity_theme" jdbcType="VARCHAR" property="activityTheme" />
<result column="activity_theme_url" jdbcType="VARCHAR" property="activityThemeUrl" />
<result column="submission_time" jdbcType="TIMESTAMP" property="submissionTime" />
<result column="submitted_user_id" jdbcType="VARCHAR" property="submittedUserId" />
<result column="preparation_user_ids" jdbcType="VARCHAR" property="preparationUserIds" />
<result column="route_completed" jdbcType="TINYINT" property="routeCompleted" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
<result column="create_user_id" jdbcType="VARCHAR" property="createUserId" />
<result column="update_user_id" jdbcType="VARCHAR" property="updateUserId" />
<result column="deleted" jdbcType="BIT" property="deleted" />
<result column="audit_id" jdbcType="BIGINT" property="auditId" />
</resultMap>
</mapper>