You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
709 B
Java
23 lines
709 B
Java
package com.kiisoo.ic.activity.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.kiisoo.ic.activity.bean.PromotionSrcVO;
|
|
import com.kiisoo.ic.activity.entity.PmnPromotionSrc;
|
|
import com.kiisoo.ic.store.entity.PoiStoreStaff;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 活动推广的对应场景 例如一个活动,不同地区 活动形式分量不同 服务类
|
|
* </p>
|
|
*
|
|
* @author zheng
|
|
* @since 2020-05-19
|
|
*/
|
|
public interface IPmnPromotionSrcService extends IService<PmnPromotionSrc> {
|
|
List<PromotionSrcVO> listUserCodes(Long userId) throws Exception;
|
|
String saveCodeFile(String fileUrl, String code);
|
|
boolean createCode(PoiStoreStaff staff, Long instanceId);
|
|
}
|