第一次提交

This commit is contained in:
gxwebsoft
2023-08-04 13:40:12 +08:00
parent f7007bd1ae
commit 2ca82fedb1
1006 changed files with 89170 additions and 42 deletions

View File

@@ -0,0 +1,37 @@
package com.gxwebsoft.apps.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.gxwebsoft.apps.entity.Cashier;
import com.gxwebsoft.apps.param.CashierParam;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 海牛收银台记录表Mapper
*
* @author WebSoft
* @since 2022-11-18 11:47:09
*/
public interface CashierMapper extends BaseMapper<Cashier> {
/**
* 分页查询
*
* @param page 分页对象
* @param param 查询参数
* @return List<Cashier>
*/
List<Cashier> selectPageRel(@Param("page") IPage<Cashier> page,
@Param("param") CashierParam param);
/**
* 查询全部
*
* @param param 查询参数
* @return List<User>
*/
List<Cashier> selectListRel(@Param("param") CashierParam param);
}