Skip to content

Commit

Permalink
fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
lhpqaq committed Sep 20, 2024
1 parent 75ad68f commit 8315de5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public interface BaseDao<Entity> {
int save(Entity entity);

/**
* Insert all of the entity.
* Insert all entities.
*/
@Options(useGeneratedKeys = true, keyProperty = "id", keyColumn = "id")
@InsertProvider(type = BaseSqlProvider.class, method = "insertList")
Expand All @@ -61,13 +61,13 @@ public interface BaseDao<Entity> {
int updateById(Entity entity);

/**
* Partially update the entity by primary key.
* Partially update the entities by primary key.
*/
@UpdateProvider(type = BaseSqlProvider.class, method = "partialUpdateByIds")
int partialUpdateByIds(List<Entity> entities);

/**
* Fully update the entity by primary key.
* Fully update the entities by primary key.
*/
@UpdateProvider(type = BaseSqlProvider.class, method = "updateByIds")
int updateByIds(List<Entity> entities);
Expand Down

0 comments on commit 8315de5

Please sign in to comment.