From 3e663da6f8877a4047e66126634eaa4c23ec8cb7 Mon Sep 17 00:00:00 2001 From: ZZ Date: Tue, 22 Feb 2022 10:58:52 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=8C=85=E5=86=B2=E7=AA=81?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E5=90=AF=E5=8A=A8=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/xhpc/pp/mapper/IccardInfoMapper.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 xhpc-modules/xhpc-power-pile/src/main/java/com/xhpc/pp/mapper/IccardInfoMapper.java diff --git a/xhpc-modules/xhpc-power-pile/src/main/java/com/xhpc/pp/mapper/IccardInfoMapper.java b/xhpc-modules/xhpc-power-pile/src/main/java/com/xhpc/pp/mapper/IccardInfoMapper.java new file mode 100644 index 00000000..d7295b74 --- /dev/null +++ b/xhpc-modules/xhpc-power-pile/src/main/java/com/xhpc/pp/mapper/IccardInfoMapper.java @@ -0,0 +1,35 @@ +package com.xhpc.pp.mapper; + +import com.xhpc.common.domain.IccardInfo; +import com.xhpc.common.domain.IccardInfoExample; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +import java.util.List; + +@Mapper +public interface IccardInfoMapper { + + long countByExample(IccardInfoExample example); + + int deleteByExample(IccardInfoExample example); + + int deleteByPrimaryKey(Integer id); + + int insert(IccardInfo record); + + int insertSelective(IccardInfo record); + + List selectByExample(IccardInfoExample example); + + IccardInfo selectByPrimaryKey(Integer id); + + int updateByExampleSelective(@Param("record") IccardInfo record, @Param("example") IccardInfoExample example); + + int updateByExample(@Param("record") IccardInfo record, @Param("example") IccardInfoExample example); + + int updateByPrimaryKeySelective(IccardInfo record); + + int updateByPrimaryKey(IccardInfo record); + +}