| | |
| | | import com.ks.goldcorn.pojo.DO.GoldCornAppInfo; |
| | | import com.ks.goldcorn.query.AppQuery; |
| | | import com.ks.lib.common.dao.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | @Mapper |
| | | public interface GoldCornAppInfoMapper extends BaseMapper<GoldCornAppInfo> { |
| | | |
| | | /** |
| | |
| | | public GoldCornAppInfo selectByAppCode(@Param("appCode") String appCode); |
| | | |
| | | |
| | | public List<GoldCornAppInfo> list(AppQuery query); |
| | | public List<GoldCornAppInfo> list(@Param("query") AppQuery query); |
| | | |
| | | public long count(AppQuery appQuery); |
| | | public long count(@Param("query")AppQuery appQuery); |
| | | |
| | | } |