分页数量

This commit is contained in:
2025-10-14 17:30:48 +08:00
parent b5dd99fa62
commit fa5e8893f5
15 changed files with 476 additions and 69 deletions

View File

@@ -17,6 +17,7 @@ import com.alibaba.fastjson2.annotation.JSONField;
#break
#end
#end
import lombok.experimental.Accessors;
#if(withActiveRecord)
import com.mybatisflex.core.activerecord.Model;
#end
@@ -54,7 +55,6 @@ import lombok.EqualsAndHashCode;
*/
#if(withLombok)
#if(withActiveRecord)
@Accessors(chain = true)
@Data(staticConstructor = "create")
@EqualsAndHashCode(callSuper = true)
#else
@@ -73,6 +73,7 @@ import lombok.EqualsAndHashCode;
@Schema(description = "#(table.getComment())")
#end
#end
@Accessors(chain = true)
public class #(entityClassName)#if(withActiveRecord) extends Model<#(entityClassName)>#else#(table.buildExtends(isBase))#(table.buildImplements())#end {
#if(jdkVersion >= 14)