Cui Zhi Feng
2024-10-25 35008a03cbee378b5905e325957a926499ca540b
1
2
3
4
5
6
7
8
9
10
11
12
package com.mzl.flower.dto.response.system;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ContentDTO extends ContentListDTO{
 
    @ApiModelProperty(value = "内容")
    private String content;
 
}