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.
28 lines
555 B
28 lines
555 B
package com.esms.dao;
|
|
|
|
import com.esms.po.RankBonus;
|
|
|
|
import java.util.List;
|
|
|
|
public interface RankBonusMapper {
|
|
|
|
int deleteByPrimaryKey(Integer rbId);
|
|
|
|
int insert(RankBonus record);
|
|
|
|
int insertSelective(RankBonus record);
|
|
|
|
RankBonus selectByPrimaryKey(Integer rbId);
|
|
|
|
List<RankBonus> selectAll();
|
|
|
|
int updateByPrimaryKeySelective(RankBonus record);
|
|
|
|
int updateByPrimaryKey(RankBonus record);
|
|
|
|
int CountByRankName(String name);
|
|
|
|
List<RankBonus> findSelective(RankBonus record);
|
|
|
|
RankBonus findByname(String name);
|
|
} |