模板列表 1的 不管状态
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.czg.market.dto;
|
||||
|
||||
import com.czg.TimeQueryParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 平台 商家申请记录查询参数
|
||||
* @author ww
|
||||
* @description 平台 商家申请记录查询参数
|
||||
*/
|
||||
@Data
|
||||
public class SmsTemplateQueryDTO extends TimeQueryParam {
|
||||
private Integer status;
|
||||
}
|
||||
@@ -2,6 +2,7 @@ package com.czg.market.service;
|
||||
|
||||
import com.czg.market.dto.ShopCouponDTO;
|
||||
import com.czg.market.dto.SmsShopTemplateDTO;
|
||||
import com.czg.market.dto.SmsTemplateQueryDTO;
|
||||
import com.mybatisflex.core.paginate.Page;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.czg.market.entity.SmsShopTemplate;
|
||||
@@ -21,6 +22,7 @@ public interface SmsShopTemplateService extends IService<SmsShopTemplate> {
|
||||
* @return 店铺短信模板列表
|
||||
*/
|
||||
List<SmsShopTemplateDTO> getTemplateList(String name, Long shopId, Integer status);
|
||||
Page<SmsShopTemplateDTO> getTemplateList2(SmsTemplateQueryDTO param);
|
||||
|
||||
void addTemplate(SmsShopTemplateDTO param);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user