yujian
2019-02-25 8b37d2f16d4aa7c7ce19829b74307ae0072b127f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yeshi.fanli.service.inter.user;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.UserSystemCouponRecord;
 
public interface UserSystemCouponRecordService {
 
    public int insertSelective(UserSystemCouponRecord record);
 
    public UserSystemCouponRecord selectByPrimaryKey(Long id);
 
    public int updateByPrimaryKeySelective(UserSystemCouponRecord record);
 
    public int updateByPrimaryKey(UserSystemCouponRecord record);
 
    public UserSystemCouponRecord getRecordByOrderNo(String orderNo, Integer state);
 
    public List<UserSystemCouponRecord> getRecordByOrderNoList(List<String> list);
    
}