订单增加赠送时长字段,增加服务暂停管理列表,身份证号验证方法优化

This commit is contained in:
xiezhijun
2021-01-07 19:17:52 +08:00
parent d80f3aca1a
commit 340399c720
15 changed files with 1061 additions and 5 deletions

View File

@ -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);
}