All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kukababy.plus.dao.InsertFace Maven / Gradle / Ivy

The newest version!
package com.kukababy.plus.dao;

import java.util.List;

/**
 * 
 * 描述:
 * 
* * @author [email protected] * @date 2019年3月5日 下午10:52:04 */ public interface InsertFace { /** * * 描述: 插入一条记录
*
* * @param entity */ void insert(Object entity); /** * * 描述: 批量插入多条记录
*
* * @param entitys * @return */ int insertBatch(List entitys); }