YJ
2021-05-10 577f2396d97f361775750f1c237c602745589add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ks.vip.service;
 
 
import com.ks.vip.pojo.DO.VipGradePotence;
 
import java.util.List;
 
public interface VipGradePotenceService {
 
   public long count(VipGradePotence t);
 
   public List<VipGradePotence> listByPage(int page, int pageSize, VipGradePotence t);
 
   public void insertSelective(VipGradePotence t);
 
   public void updateByPrimaryKeySelective(VipGradePotence t);
 
   public VipGradePotence selectByPrimaryKey(Long id);
 
   public void delete(Long id);
}