master
parent
0b68a95534
commit
14a88e2b13
@ -0,0 +1,12 @@
|
||||
package com.macro.mall.service;
|
||||
|
||||
import com.macro.mall.model.CmsPrefrenceArea;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 优选专区Service
|
||||
*/
|
||||
public interface CmsPrefrenceAreaService {
|
||||
List<CmsPrefrenceArea> listAll();
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.macro.mall.service;
|
||||
|
||||
import com.macro.mall.model.CmsSubject;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商品专题Service
|
||||
*/
|
||||
public interface CmsSubjectService {
|
||||
/**
|
||||
* 查询所有专题
|
||||
*/
|
||||
List<CmsSubject> listAll();
|
||||
|
||||
/**
|
||||
* 分页查询专题
|
||||
*/
|
||||
List<CmsSubject> list(String keyword, Integer pageNum, Integer pageSize);
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package com.macro.mall.service;
|
||||
|
||||
import com.macro.mall.dto.OmsOrderReturnApplyResult;
|
||||
import com.macro.mall.dto.OmsReturnApplyQueryParam;
|
||||
import com.macro.mall.dto.OmsUpdateStatusParam;
|
||||
import com.macro.mall.model.OmsOrderReturnApply;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 退货申请管理Service
|
||||
*/
|
||||
public interface OmsOrderReturnApplyService {
|
||||
/**
|
||||
* 分页查询申请
|
||||
*/
|
||||
List<OmsOrderReturnApply> list(OmsReturnApplyQueryParam queryParam, Integer pageSize, Integer pageNum);
|
||||
|
||||
/**
|
||||
* 批量删除申请
|
||||
*/
|
||||
int delete(List<Long> ids);
|
||||
|
||||
/**
|
||||
* 修改申请状态
|
||||
*/
|
||||
int updateStatus(Long id, OmsUpdateStatusParam statusParam);
|
||||
|
||||
/**
|
||||
* 获取指定申请详情
|
||||
*/
|
||||
OmsOrderReturnApplyResult getItem(Long id);
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
package com.macro.mall.service;
|
||||
|
||||
import com.macro.mall.model.OmsOrderReturnReason;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 订单原因管理Service
|
||||
*/
|
||||
public interface OmsOrderReturnReasonService {
|
||||
/**
|
||||
* 添加订单原因
|
||||
*/
|
||||
int create(OmsOrderReturnReason returnReason);
|
||||
|
||||
/**
|
||||
* 修改退货原因
|
||||
*/
|
||||
int update(Long id, OmsOrderReturnReason returnReason);
|
||||
|
||||
/**
|
||||
* 批量删除退货原因
|
||||
*/
|
||||
int delete(List<Long> ids);
|
||||
|
||||
/**
|
||||
* 分页获取退货原因
|
||||
*/
|
||||
List<OmsOrderReturnReason> list(Integer pageSize, Integer pageNum);
|
||||
|
||||
/**
|
||||
* 批量修改退货原因状态
|
||||
*/
|
||||
int updateStatus(List<Long> ids, Integer status);
|
||||
|
||||
/**
|
||||
* 获取单个退货原因详情信息
|
||||
*/
|
||||
OmsOrderReturnReason getItem(Long id);
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.macro.mall.service;
|
||||
|
||||
import com.macro.mall.dto.OssCallbackResult;
|
||||
import com.macro.mall.dto.OssPolicyResult;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
/**
|
||||
* oss上传管理Service
|
||||
*/
|
||||
public interface OssService {
|
||||
OssPolicyResult policy();
|
||||
OssCallbackResult callback(HttpServletRequest request);
|
||||
}
|
Loading…
Reference in new issue