| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.dk.mdm.mapper.pur;
- import com.dk.mdm.model.pojo.pur.Purchase;
- import com.dk.common.mapper.BaseMapper;
- import com.dk.mdm.model.query.pur.PurchaseQuery;
- import com.dk.mdm.model.response.pur.PurchaseResponse;
- import com.dk.mdm.model.vo.pur.PurchaseVO;
- import io.swagger.models.auth.In;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 采购订单 Mapper
- */
- @Repository
- public interface PurchaseMapper extends BaseMapper<Purchase>{
- /**
- * @desc : 查询采购订单
- * @author : 常皓宁
- * @date : 2024/2/28 9:48
- */
- List<PurchaseResponse> selectByCond(PurchaseQuery purchaseQuery);
- /**
- * @desc : 查询采购订单个数
- * @author : 常皓宁
- * @date : 2024/2/28 9:48
- */
- Long countByCond(PurchaseQuery purchaseQuery);
- /**
- * @desc : 根据id查询
- * @author : 常皓宁
- * @date : 2024/3/2 11:39
- */
- PurchaseResponse selectById(@Param("purId") String purId);
- }
|