package com.ltkj.hosp.service;
|
|
import java.math.BigDecimal;
|
import java.util.*;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.google.common.base.Strings;
|
import com.ltkj.common.core.domain.AjaxResult;
|
import com.ltkj.hosp.domain.TjAdvice;
|
import com.ltkj.hosp.domain.TjAppOrder;
|
import com.ltkj.hosp.domain.Wxuser;
|
import org.apache.commons.lang3.StringUtils;
|
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
/**
|
* 小程序预约下单Service接口
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-05-18
|
*/
|
public interface ITjAppOrderService extends IService<TjAppOrder> {
|
/**
|
* 查询小程序预约下单
|
*
|
* @param id 小程序预约下单主键
|
* @return 小程序预约下单
|
*/
|
public TjAppOrder selectTjAppOrderById(Long id);
|
|
/**
|
* 查询小程序预约下单列表
|
*
|
* @param tjAppOrder 小程序预约下单
|
* @return 小程序预约下单集合
|
*/
|
public List<TjAppOrder> selectTjAppOrderList(TjAppOrder tjAppOrder);
|
|
/**
|
* 新增小程序预约下单
|
*
|
* @param tjAppOrder 小程序预约下单
|
* @return 结果
|
*/
|
public int insertTjAppOrder(TjAppOrder tjAppOrder);
|
|
/**
|
* 修改小程序预约下单
|
*
|
* @param tjAppOrder 小程序预约下单
|
* @return 结果
|
*/
|
public int updateTjAppOrder(TjAppOrder tjAppOrder);
|
|
/**
|
* 批量删除小程序预约下单
|
*
|
* @param ids 需要删除的小程序预约下单主键集合
|
* @return 结果
|
*/
|
public int deleteTjAppOrderByIds(Long[] ids);
|
|
/**
|
* 删除小程序预约下单信息
|
*
|
* @param id 小程序预约下单主键
|
* @return 结果
|
*/
|
public int deleteTjAppOrderById(Long id);
|
|
|
|
|
}
|