package org.jeecg.modules.dry.entity; import java.io.Serializable; import java.io.UnsupportedEncodingException; import java.util.Date; import java.math.BigDecimal; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import org.jeecg.common.aspect.annotation.Dict; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; /** * @Description: dry_opc_device * @Author: jeecg-boot * @Date: 2023-11-28 * @Version: V1.0 */ @Data @TableName("dry_opc_device") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="dry_opc_device对象", description="dry_opc_device") public class DryOpcDevice implements Serializable { private static final long serialVersionUID = 1L; /**id*/ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "id") private java.lang.String id; /**名称*/ @Excel(name = "名称", width = 15) @ApiModelProperty(value = "名称") private java.lang.String name; /**点位标识*/ @Excel(name = "点位标识", width = 15) @ApiModelProperty(value = "点位标识") private java.lang.String identifier; /**排序*/ @Excel(name = "排序", width = 15) @ApiModelProperty(value = "排序") private java.lang.Integer sortOrder; /**类型(0 灯,1 摄像头)*/ @Excel(name = "类型(0 灯,1 摄像头)", width = 15, dicCode = "device_type") @Dict(dicCode = "device_type") @ApiModelProperty(value = "类型(0 灯,1 摄像头)") private java.lang.String type; /**逻辑删除*/ @Excel(name = "逻辑删除", width = 15) @ApiModelProperty(value = "逻辑删除") private java.lang.Integer del; @TableField(exist = false) private boolean value; }