Pu Zhibing
2025-02-05 19b7530c7feb8eca1dfecd6502feaf61057fdab8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.integration.drainage.model;
 
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
/**
 * 请求设备认证
 * @author zhibing.pu
 * @Date 2025/1/22 16:15
 */
@Data
public class QueryEquipAuth {
    /**
     * 设备认证流水
     */
    @NotNull
    private String equipAuthSeq;
    /**
     * 充电设备接口编码
     */
    @NotNull
    private String connectorID;
}