36 lines
473 B
Java
36 lines
473 B
Java
package com.ruoyi.collect.domain;
|
||
|
||
import lombok.Data;
|
||
|
||
/**
|
||
* @author Lff
|
||
* @Date: 2023/9/11 20:47
|
||
* @Description:
|
||
*/
|
||
@Data
|
||
public class Identification {
|
||
/**
|
||
* 標識主鍵
|
||
*/
|
||
private Integer identificationId;
|
||
|
||
/**
|
||
* 標識名稱
|
||
*/
|
||
private String identificationName;
|
||
|
||
/**
|
||
* 標識狀態
|
||
*/
|
||
private Integer identificationStatus;
|
||
|
||
/**
|
||
* 電子圍欄多選框
|
||
*/
|
||
private Integer[] fences;
|
||
|
||
|
||
|
||
|
||
}
|