zhanghua
2023-11-16 479b759f08218794c2fba1fee4215504634b0583
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;
}