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
22
23
24
25
package com.ks.vip.service;
 
 
import com.ks.vip.pojo.DO.VipCenter;
import com.ks.vip.pojo.DO.VipCombo;
 
import java.util.List;
 
public interface VipCenterService {
 
   public long count(VipCenter t);
 
   public List<VipCenter> listByPage(int page, int pageSize, VipCenter t);
 
   public void insertSelective(VipCenter t);
 
   public void updateByPrimaryKeySelective(VipCenter t);
 
   public VipCenter getByUid(String id);
 
   public void deteleByUid(String id);
 
   public void saveVipCenter(String uid, Long gradeId, Integer validDays, Long orderId);
 
}