zhangnaisong
2024-05-17 6bddb83b1e7556aa9b2b1d4ce7ed5f4b4c62f2d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.sy.domain;
 
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
 
/**
 * @author Administrator
 */
@Data
public class ArdSyCarRtu {
    private String id;
    private String carId;
    private String topicSubscribe; //订阅
    private String topicPublish; //发布
    private Integer installType; //装油点 0施封 1解封
    private Integer unloadType; //卸油点 0施封 1解封
}