Browse Source

改注释

James 4 years ago
parent
commit
feeb3d228a

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

@@ -33,7 +33,7 @@ public interface IRow<M> {
     public Integer getInt(String column);
 
     /**
-     * Get column of mysql type: bigint
+     * Get column of mysql type: bigint, unsigned int
      */
     public Long getLong(String column);
 
@@ -45,7 +45,7 @@ public interface IRow<M> {
     /**
      * Get column of mysql type: date, year
      */
-    public java.util.Date getDate(String column) ;
+    public java.util.Date getDate(String column);
 
     public LocalDateTime getLocalDateTime(String column);
 

+ 1 - 1
src/main/java/com/jfinal/plugin/activerecord/Record.java

@@ -237,7 +237,7 @@ public class Record implements IRow<Record>, Serializable {
 	}
 	
 	/**
-	 * Get column of mysql type: bigint
+	 * Get column of mysql type: bigint, unsigned int
 	 */
 	public Long getLong(String column) {
 		Number n = getNumber(column);