zhanghua
2024-01-21 9d72eb559e67e3f0bb321198fc562f3cfd9a8625
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;
}