fix
Helius
2022-08-30 59ba8b1f022d4671c73c1b6e6f81beaa9928b3d7
fix
3 files modified
15 ■■■■■ changed files
src/main/java/com/xcong/farmer/cms/core/tag/model/Ad.java 10 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/farmer/cms/modules/system/dto/AdAddDto.java 3 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/farmer/cms/modules/system/entity/CmsAdInfoEntity.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/farmer/cms/core/tag/model/Ad.java
@@ -6,10 +6,20 @@
 **/
public class Ad {
    private String groupId;
    private String id;
    private String field;
    public String getGroupId() {
        return groupId;
    }
    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }
    public String getId() {
        return id;
    }
src/main/java/com/xcong/farmer/cms/modules/system/dto/AdAddDto.java
@@ -31,4 +31,7 @@
    @ApiModelProperty(value = "备注")
    private String remark;
    @ApiModelProperty(value = "排序")
    private Integer seq;
}
src/main/java/com/xcong/farmer/cms/modules/system/entity/CmsAdInfoEntity.java
@@ -25,6 +25,8 @@
    private Long companyId;
    private Integer seq = 1;
    @TableField(exist = false)
    private String groupName;
}