| | |
| | | package org.jeecg.modules.dnc.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.jeecg.modules.dnc.entity.ProductInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.dnc.entity.ProductInfo; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<ProductInfo> getByUserPerms(@Param("userId") String userId); |
| | | |
| | | @Select("SELECT * FROM nc_product_info WHERE product_id = #{productId}") |
| | | ProductInfo selectById(@Param("productId") String productId); |
| | | } |