21 lines
477 B
Plaintext
21 lines
477 B
Plaintext
package com.sercurityControl.proteam.domain;
|
|
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author bonus
|
|
* @Auther: ccw
|
|
* @Date: 2021/12/20/16:03
|
|
* @description: 工程绑定无人机
|
|
*/
|
|
@Data
|
|
public class UAVBandProEntity extends BaseEntity {
|
|
|
|
private String id;
|
|
private String macId;
|
|
private String proId; // 工程id
|
|
private String deviceName; // 无人机名称
|
|
private String proName; // 工程名称
|
|
}
|