订单增加赠送时长字段,增加服务暂停管理列表,身份证号验证方法优化
This commit is contained in:
@ -0,0 +1,61 @@
|
||||
package com.stdiet.custom.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.stdiet.custom.domain.SysOrderPause;
|
||||
|
||||
/**
|
||||
* 订单服务暂停Mapper接口
|
||||
*
|
||||
* @author wonder
|
||||
* @date 2021-01-07
|
||||
*/
|
||||
public interface SysOrderPauseMapper
|
||||
{
|
||||
/**
|
||||
* 查询订单服务暂停
|
||||
*
|
||||
* @param id 订单服务暂停ID
|
||||
* @return 订单服务暂停
|
||||
*/
|
||||
public SysOrderPause selectSysOrderPauseById(Long id);
|
||||
|
||||
/**
|
||||
* 查询订单服务暂停列表
|
||||
*
|
||||
* @param sysOrderPause 订单服务暂停
|
||||
* @return 订单服务暂停集合
|
||||
*/
|
||||
public List<SysOrderPause> selectSysOrderPauseList(SysOrderPause sysOrderPause);
|
||||
|
||||
/**
|
||||
* 新增订单服务暂停
|
||||
*
|
||||
* @param sysOrderPause 订单服务暂停
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertSysOrderPause(SysOrderPause sysOrderPause);
|
||||
|
||||
/**
|
||||
* 修改订单服务暂停
|
||||
*
|
||||
* @param sysOrderPause 订单服务暂停
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateSysOrderPause(SysOrderPause sysOrderPause);
|
||||
|
||||
/**
|
||||
* 删除订单服务暂停
|
||||
*
|
||||
* @param id 订单服务暂停ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysOrderPauseById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除订单服务暂停
|
||||
*
|
||||
* @param ids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysOrderPauseByIds(Long[] ids);
|
||||
}
|
Reference in New Issue
Block a user