代码初始化

This commit is contained in:
wangxiangshun
2025-10-02 17:19:01 +08:00
commit 5cc31cfbbe
474 changed files with 53553 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
package com.vetti.system.mapper;
import java.util.List;
import com.vetti.system.domain.SysInternationalInfo;
/**
* 数据国际化映射Mapper接口
*
* @author wangxiangshun
* @date 2025-08-26
*/
public interface SysInternationalInfoMapper
{
/**
* 查询数据国际化映射
*
* @param id 数据国际化映射主键
* @return 数据国际化映射
*/
public SysInternationalInfo selectSysInternationalInfoById(Long id);
/**
* 查询数据国际化映射列表
*
* @param sysInternationalInfo 数据国际化映射
* @return 数据国际化映射集合
*/
public List<SysInternationalInfo> selectSysInternationalInfoList(SysInternationalInfo sysInternationalInfo);
/**
* 新增数据国际化映射
*
* @param sysInternationalInfo 数据国际化映射
* @return 结果
*/
public int insertSysInternationalInfo(SysInternationalInfo sysInternationalInfo);
/**
* 修改数据国际化映射
*
* @param sysInternationalInfo 数据国际化映射
* @return 结果
*/
public int updateSysInternationalInfo(SysInternationalInfo sysInternationalInfo);
/**
* 删除数据国际化映射
*
* @param id 数据国际化映射主键
* @return 结果
*/
public int deleteSysInternationalInfoById(Long id);
/**
* 批量删除数据国际化映射
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteSysInternationalInfoByIds(Long[] ids);
/**
* 批量新增数据国际化映射
*
* @param sysInternationalInfoList 数据国际化映射列表
* @return 结果
*/
public int batchInsertSysInternationalInfo(List<SysInternationalInfo> sysInternationalInfoList);
}