sgj
6 天以前 ce819cce8e411e78e188e31645b0d7c8c2382784
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.fzzy.igds.response;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * @Description 粮情检测响应结果信息
 * @Author CZT
 * @Date 2025/12/9 9:56
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class GrainResponse extends BaseResponse {
 
    public GrainResponse(String code, String msg) {
        super(code,msg);
    }
}