安保力量物
This commit is contained in:
parent
4f2526bb73
commit
9f1fcf8b5b
|
|
@ -0,0 +1,102 @@
|
|||
package com.dkl.large.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.dkl.common.annotation.Excel;
|
||||
import com.dkl.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 安保力量(物)对象 dkl_security_equipment
|
||||
*
|
||||
* @author Falling
|
||||
* @date 2025-06-16
|
||||
*/
|
||||
@Data
|
||||
public class DklSecurityEquipment extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** ID */
|
||||
private Long id;
|
||||
|
||||
/** 设备名称 */
|
||||
@Excel(name = "设备名称")
|
||||
private String deviceName;
|
||||
|
||||
/** 型号 */
|
||||
@Excel(name = "型号")
|
||||
private String model;
|
||||
|
||||
/** 安装位置 */
|
||||
@Excel(name = "安装位置")
|
||||
private String installationPosition;
|
||||
|
||||
/** 购置日期 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "购置日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date buyTime;
|
||||
|
||||
/** 价格 */
|
||||
@Excel(name = "价格")
|
||||
private BigDecimal price;
|
||||
|
||||
/** 维护周期 */
|
||||
@Excel(name = "维护周期")
|
||||
private String maintenanceCycle;
|
||||
|
||||
/** 上次维护日期 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "上次维护日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date lastMaintenanceTime;
|
||||
|
||||
/** 维护情况 */
|
||||
@Excel(name = "维护情况")
|
||||
private String maintenanceSituation;
|
||||
|
||||
/** 维护责任人 */
|
||||
@Excel(name = "维护责任人")
|
||||
private String maintenancePersonnel;
|
||||
|
||||
/** 设备状态 */
|
||||
@Excel(name = "设备状态")
|
||||
private String state;
|
||||
|
||||
/** 监控点信息ID */
|
||||
// @Excel(name = "监控点信息ID")
|
||||
private Long monitoringPointsId;
|
||||
|
||||
/** '删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
/** 部门id */
|
||||
// @Excel(name = "部门id")
|
||||
private Long deptId;
|
||||
|
||||
/** 名称 */
|
||||
@Excel(name = "监控点名称")
|
||||
private String pointName;
|
||||
/** 地址 */
|
||||
private String pointAddress;
|
||||
/** 经度 */
|
||||
private String lng;
|
||||
/** 纬度 */
|
||||
private String lat;
|
||||
|
||||
private String sigenCode;
|
||||
/** 开始时间 */
|
||||
@TableField(exist = false)
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date startTime;
|
||||
|
||||
/** 结束时间 */
|
||||
@TableField(exist = false)
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date endTime;
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue