wuzeyu
2024-01-18 2d7d4dc19128a33d23e7d462d8a61cd423bd8357
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaClientTypeMapper.java
@@ -2,7 +2,6 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoBa.BaClientType;
import com.dy.pipIrrGlobal.pojoBa.BaRole;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@@ -12,8 +11,8 @@
public interface BaClientTypeMapper extends BaseMapper<BaClientType> {
    /**
     * 通过ID得到类型名称
     * @param id
     * @return
     * @param id 主键
     * @return 名称
     */
    String selectNameById(Long id) ;
@@ -50,7 +49,7 @@
     * @param record the record
     * @return insert count
     */
    int insert(BaClientType record);
    int putin(BaClientType record);
    /**
     * insert record to table selective
@@ -75,7 +74,7 @@
    /**
     * 通过ID删除
     * @param id
     * @param id 主键
     */
    void deleteByPrimaryKey(Long id) ;
}