同步框架更新

This commit is contained in:
yaoyn
2025-02-15 17:05:09 +08:00
parent 29b5c68564
commit 9b7d27a2b4
141 changed files with 585 additions and 133 deletions

View File

@ -1,18 +0,0 @@
package com.xjrsoft.desktop.mapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.xjrsoft.desktop.entity.DesktopHistory;
import org.apache.ibatis.annotations.Mapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author tzx
* @since 2023-04-13
*/
@Mapper
public interface DesktopHistoryMapper extends MPJBaseMapper<DesktopHistory> {
}

View File

@ -1,18 +0,0 @@
package com.xjrsoft.desktop.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xjrsoft.desktop.entity.DesktopRelation;
import org.apache.ibatis.annotations.Mapper;
/**
* <p>
* 桌面设计授权表 Mapper 接口
* </p>
*
* @author tzx
* @since 2023-06-01
*/
@Mapper
public interface DesktopRelationMapper extends BaseMapper<DesktopRelation> {
}

View File

@ -1,18 +0,0 @@
package com.xjrsoft.desktop.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xjrsoft.desktop.entity.DesktopSchema;
import org.apache.ibatis.annotations.Mapper;
/**
* <p>
* 桌面设计历史记录 Mapper 接口
* </p>
*
* @author tzx
* @since 2023-04-13
*/
@Mapper
public interface DesktopSchemaMapper extends BaseMapper<DesktopSchema> {
}

View File

@ -1,18 +0,0 @@
package com.xjrsoft.desktop.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xjrsoft.desktop.entity.UserDesktopRelation;
import org.apache.ibatis.annotations.Mapper;
/**
* <p>
* 用户桌面设计首页关系表 Mapper 接口
* </p>
*
* @author tzx
* @since 2023-06-02
*/
@Mapper
public interface UserDesktopRelationMapper extends BaseMapper<UserDesktopRelation> {
}