You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
720 B
31 lines
720 B
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
*
|
|
* https://www.renren.io
|
|
*
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.service;
|
|
|
|
import com.epmet.commons.mybatis.service.BaseService;
|
|
import com.epmet.entity.SysLanguageEntity;
|
|
|
|
/**
|
|
* 国际化
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
*/
|
|
public interface SysLanguageService extends BaseService<SysLanguageEntity> {
|
|
|
|
/**
|
|
* 保存或更新
|
|
* @param tableName 表名
|
|
* @param tableId 表主键
|
|
* @param fieldName 字段名
|
|
* @param fieldValue 字段值
|
|
* @param language 语言
|
|
*/
|
|
void saveOrUpdate(String tableName, Long tableId, String fieldName, String fieldValue, String language);
|
|
}
|
|
|
|
|