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.
bsdgy-server/src/main/java/com/kiisoo/ic/activity/service/IPmnPromotionSrcService.java

23 lines
709 B
Java

5 years ago
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;
5 years ago
import com.kiisoo.ic.store.entity.PoiStoreStaff;
5 years ago
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;
5 years ago
String saveCodeFile(String fileUrl, String code);
5 years ago
boolean createCode(PoiStoreStaff staff, Long instanceId);
5 years ago
}