移除无用的字段和方法

This commit is contained in:
lhd
2024-06-25 13:40:16 +08:00
parent 107c290605
commit 383c8c9ddf
4 changed files with 3 additions and 14 deletions

View File

@@ -30,8 +30,6 @@
<result property="categoryId" column="category_id"/>
<result property="soldNum" column="sold_num"/>
<result property="totalStocks" column="total_stocks"/>
<result property="transportMode" column="transport_mode"/>
<result property="transportId" column="transport_id"/>
<result property="createTime" column="create_time"/>
<result property="updateTime" column="update_time"/>

View File

@@ -10,8 +10,7 @@
<result column="user_name" jdbcType="VARCHAR" property="userName" />
<result column="email" jdbcType="VARCHAR" property="email" />
<result column="contact" jdbcType="VARCHAR" property="contact" />
<result column="staus" jdbcType="TINYINT" property="staus" />
<result column="content" jdbcType="LONGVARCHAR" property="content" />
<result column="reply" jdbcType="LONGVARCHAR" property="reply" />
</resultMap>
</mapper>
</mapper>

View File

@@ -9,7 +9,6 @@
<result column="addr_id" jdbcType="BIGINT" property="addrId" />
<result column="user_id" jdbcType="VARCHAR" property="userId" />
<result column="receiver" jdbcType="VARCHAR" property="receiver" />
<result column="area_str" jdbcType="VARCHAR" property="areaStr" />
<result column="addr" jdbcType="VARCHAR" property="addr" />
<result column="post_code" jdbcType="VARCHAR" property="postCode" />
<result column="area_id" jdbcType="BIGINT" property="areaId" />
@@ -17,4 +16,4 @@
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="version" jdbcType="INTEGER" property="version" />
</resultMap>
</mapper>
</mapper>

View File

@@ -38,17 +38,10 @@ public interface SysConfigMapper extends BaseMapper<SysConfig> {
*/
int updateValueByKey(@Param("key") String key, @Param("value") String value);
/**
* 根据key查询系统配置信息
* @param key
* @return 系统配置信息列表
*/
List<SysConfig> selectByKeyLike(String key);
/**
* 批量删除系统配置
* @param ids 系统配置信息数组
*/
void deleteBatch(@Param("ids") Long[] ids);
}