zhanghua
2023-08-17 8945b94fc922fc6598f7558b318dc7674f525b70
1
2
3
4
5
6
7
8
9
10
package com.ycl.smoke.dto;
 
import lombok.Data;
 
@Data
public class ResultResponseDto {
    private String msg;
    private Integer code;
    private String result;
}