package com.yeshi.fanli.service.inter.order;
|
|
import com.yeshi.fanli.entity.order.HongBaoOrder;
|
|
public interface HongBaoOrderService {
|
|
public int insert(HongBaoOrder record);
|
|
public int insertSelective(HongBaoOrder record);
|
|
public int updateByPrimaryKey(HongBaoOrder record);
|
|
public int updateByPrimaryKeySelective(HongBaoOrder record);
|
|
public int deleteByPrimaryKey(Long id);
|
|
public HongBaoOrder selectByPrimaryKey(Long id);
|
|
}
|