| 1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.dk.mdm.mapper.mst;
- import com.dk.mdm.model.pojo.mst.Unit;
- import com.dk.common.mapper.BaseMapper;
- import com.dk.mdm.model.query.mst.UnitQuery;
- import com.dk.mdm.model.response.mst.GoodsBrandResponse;
- import com.dk.mdm.model.response.mst.UnitResponse;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 计量单位 Mapper
- */
- @Repository
- public interface UnitMapper extends BaseMapper<Unit>{
- /**
- * @desc : 根据条件进行查询
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- List<UnitResponse> selectByCond(UnitQuery UnitQuery);
- /**
- * @desc : 根据条件进行查询(数量)
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- Long countByCond(UnitQuery UnitQuery);
- /**
- * @desc : 查询排序
- * @author : 于继渤
- * @date : 2024/2/26 10:36
- */
- Integer selectDisplayNo(UnitQuery UnitQuery);
- }
|