car-collect/ruoyi-collect-common/src/main/java/com/ruoyi/collect/domain/Identification.java

36 lines
473 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}