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);
|
|
}
|