Browse Source

jfinal 4.9.17 release ^_^

James 4 years ago
parent
commit
7cd90abe6c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/main/java/com/jfinal/plugin/activerecord/IRow.java

+ 3 - 3
src/main/java/com/jfinal/plugin/activerecord/IRow.java

@@ -14,14 +14,14 @@ public interface IRow<M> {
     public M put(Map<String, Object> map);
 
     /**
-     * Set column to record.
+     * Set column value.
      * @param column the column name
      * @param value the value of the column
      */
     public M set(String column, Object value);
 
     /**
-     * Get column of any mysql type
+     * Get column value of any mysql type
      */
     public <T> T get(String column);
 
@@ -103,7 +103,7 @@ public interface IRow<M> {
     public Number getNumber(String column);
 
     /**
-     * Return json string of this record.
+     * Convert to json string.
      */
     public String toJson();
 }