liulin
2025-07-04 774c0b57de71a09c1965a89a1a08f9196b23fcd5
1
2
3
4
5
6
7
8
9
10
11
12
package com.lunhan.water.service.dto;
 
import com.lunhan.water.repository.vo.NoticeVO;
import lombok.Data;
 
@Data
public class NoticeDetail extends NoticeVO {
    /**
     * 内容
     */
    private String content;
}