All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jblv.shop.service.IStoreCouponService Maven / Gradle / Ivy

The newest version!
package com.jblv.shop.service;

import com.jblv.shop.domain.StoreCoupon;
import java.util.List;

/**
 * 优惠券主Service接口
 * 
 * @author yangtao
 * @date 2019-08-29
 */
public interface IStoreCouponService 
{
    /**
     * 查询优惠券主
     * 
     * @param id 优惠券主ID
     * @return 优惠券主
     */
    public StoreCoupon selectStoreCouponById(Integer id);

    /**
     * 查询优惠券主列表
     * 
     * @param storeCoupon 优惠券主
     * @return 优惠券主集合
     */
    public List selectStoreCouponList(StoreCoupon storeCoupon);

    /**
     * 新增优惠券主
     * 
     * @param storeCoupon 优惠券主
     * @return 结果
     */
    public int insertStoreCoupon(StoreCoupon storeCoupon);

    /**
     * 修改优惠券主
     * 
     * @param storeCoupon 优惠券主
     * @return 结果
     */
    public int updateStoreCoupon(StoreCoupon storeCoupon);

    /**
     * 批量删除优惠券主
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteStoreCouponByIds(String ids);

    /**
     * 删除优惠券主信息
     * 
     * @param id 优惠券主ID
     * @return 结果
     */
    public int deleteStoreCouponById(Integer id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy