From ae04c5d925b0094e1a1ba1f2ce0bf6da0a6fee04 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 22 一月 2026 17:27:55 +0800
Subject: [PATCH] 2026.1.22 1. 新增台账上传office文档功能; 2. 新增office文档存储原始文档名字功能
---
src/main/resources/mapper/LedgerSubTypeMapper.xml | 33 +++++++++++++++++++--------------
1 files changed, 19 insertions(+), 14 deletions(-)
diff --git a/src/main/resources/mapper/LedgerSubTypeMapper.xml b/src/main/resources/mapper/LedgerSubTypeMapper.xml
index 46301e0..165e11a 100644
--- a/src/main/resources/mapper/LedgerSubTypeMapper.xml
+++ b/src/main/resources/mapper/LedgerSubTypeMapper.xml
@@ -1,24 +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="cn.flightfeather.supervision.domain.mapper.LedgerSubTypeMapper" >
- <resultMap id="BaseResultMap" type="cn.flightfeather.supervision.domain.entity.LedgerSubType" >
+<?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="cn.flightfeather.supervision.domain.mapper.LedgerSubTypeMapper">
+ <resultMap id="BaseResultMap" type="cn.flightfeather.supervision.domain.entity.LedgerSubType">
<!--
WARNING - @mbg.generated
-->
- <id column="LS_SubTypeId" property="lsSubtypeid" jdbcType="INTEGER" />
- <result column="LS_Name" property="lsName" jdbcType="VARCHAR" />
- <result column="L_TypeId" property="lTypeid" jdbcType="INTEGER" />
- <result column="L_TypeName" property="lTypename" jdbcType="VARCHAR" />
- <result column="L_IconUrl" property="lIconurl" jdbcType="VARCHAR" />
- <result column="L_SceneType" property="lScenetype" jdbcType="INTEGER" />
- <result column="L_NeedUpdate" property="lNeedupdate" jdbcType="BIT" />
- <result column="L_Period" property="lPeriod" jdbcType="INTEGER" />
+ <id column="LS_SubTypeId" jdbcType="INTEGER" property="lsSubtypeid" />
+ <result column="LS_Name" jdbcType="VARCHAR" property="lsName" />
+ <result column="L_TypeId" jdbcType="INTEGER" property="lTypeid" />
+ <result column="L_TypeName" jdbcType="VARCHAR" property="lTypename" />
+ <result column="L_IconUrl" jdbcType="VARCHAR" property="lIconurl" />
+ <result column="L_SceneType" jdbcType="INTEGER" property="lScenetype" />
+ <result column="L_NeedUpdate" jdbcType="BIT" property="lNeedupdate" />
+ <result column="L_Period" jdbcType="INTEGER" property="lPeriod" />
+ <result column="L_Real_Time" jdbcType="BIT" property="lRealTime" />
+ <result column="L_Auto_Copy" jdbcType="BIT" property="lAutoCopy" />
+ <result column="L_Description" jdbcType="VARCHAR" property="lDescription" />
+ <result column="L_Not_Related_Switch" jdbcType="BIT" property="lNotRelatedSwitch" />
+ <result column="L_Multi_Group" jdbcType="BIT" property="lMultiGroup" />
</resultMap>
- <sql id="Base_Column_List" >
+ <sql id="Base_Column_List">
<!--
WARNING - @mbg.generated
-->
LS_SubTypeId, LS_Name, L_TypeId, L_TypeName, L_IconUrl, L_SceneType, L_NeedUpdate,
- L_Period
+ L_Period, L_Real_Time, L_Auto_Copy, L_Description, L_Not_Related_Switch, L_Multi_Group
</sql>
</mapper>
\ No newline at end of file
--
Gitblit v1.9.3