feat:事项配置

This commit is contained in:
苏竹红
2025-07-24 17:28:42 +08:00
parent 4ba6266f5c
commit b10f129271
29 changed files with 2462 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?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.StoreMessageMapper">
<resultMap id="BaseResultMap" type="com.cool.store.entity.StoreMessageDO">
<!--
WARNING - @mbg.generated
-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="store_id" jdbcType="VARCHAR" property="storeId" />
<result column="store_code" jdbcType="VARCHAR" property="storeCode" />
<result column="store_name" jdbcType="VARCHAR" property="storeName" />
<result column="message_template_id" jdbcType="BIGINT" property="messageTemplateId" />
<result column="read_status" jdbcType="BIT" property="readStatus" />
<result column="read_time" jdbcType="TIMESTAMP" property="readTime" />
<result column="process_status" jdbcType="TINYINT" property="processStatus" />
<result column="process_time" jdbcType="TIMESTAMP" property="processTime" />
<result column="actual_operator_id" jdbcType="BIGINT" property="actualOperatorId" />
<result column="actual_operator_name" jdbcType="VARCHAR" property="actualOperatorName" />
<result column="revoke_status" jdbcType="BIT" property="revokeStatus" />
<result column="revoke_time" jdbcType="TIMESTAMP" property="revokeTime" />
<result column="revoke_operator_id" jdbcType="BIGINT" property="revokeOperatorId" />
<result column="revoke_operator_name" jdbcType="VARCHAR" property="revokeOperatorName" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
<result column="operator_list" jdbcType="LONGVARCHAR" property="operatorList" />
</resultMap>
</mapper>