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.
aggregation-platform/src/com/platform/service/EncodeInfoService.java

21 lines
430 B

package com.platform.service;
import java.util.List;
import com.platform.entities.EncodedInfoEntity;
/**
* 数据库业务逻辑处理接口
*
* @author wuming
*
*/
public interface EncodeInfoService {
public List<EncodedInfoEntity> getAllEncodeInfo(String tableName);
public int deleteEncodeByCode(String code, String tableName);
public String getEncodeNameByCode(String code, String name);
}