|
@@ -45,12 +45,20 @@ public class FlwFormTemplate extends BaseEntity {
|
|
|
@Size(max = 100)
|
|
|
private String code;
|
|
|
|
|
|
- @Schema(description = "类型 0,PC 1,APP")
|
|
|
+ @Schema(description = "类型 0,设计表单 1,系统表单")
|
|
|
@PositiveOrZero
|
|
|
private Integer type;
|
|
|
|
|
|
+ @Schema(description = "PC端地址")
|
|
|
+ @Size(max = 255)
|
|
|
+ private String pcUrl;
|
|
|
+
|
|
|
+ @Schema(description = "APP端地址")
|
|
|
+ @Size(max = 255)
|
|
|
+ private String appUrl;
|
|
|
+
|
|
|
@Schema(description = "内容")
|
|
|
- @Size(max = 2147483647)
|
|
|
+ @Size(max = 10000)
|
|
|
private String content;
|
|
|
|
|
|
@Schema(description = "状态 0、禁用 1、正常")
|