You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.3 KiB
85 lines
2.3 KiB
package com.gxwebsoft.tower.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 检查/保养部位记录表
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2023-06-08 11:00:17
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@ApiModel(value = "TowerPlace对象", description = "检查/保养部位记录表")
|
|
public class TowerPlace implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty(value = "参数ID")
|
|
@TableId(value = "place_id", type = IdType.AUTO)
|
|
private Integer placeId;
|
|
|
|
@ApiModelProperty(value = "部位编码")
|
|
private String placeCode;
|
|
|
|
@ApiModelProperty(value = "设备类型")
|
|
private String equipmentType;
|
|
|
|
@ApiModelProperty(value = "部位名称")
|
|
private String name;
|
|
|
|
@ApiModelProperty(value = "检查/保养标准")
|
|
@TableField(exist = false)
|
|
private List<TowerPlaceStandard> standard;
|
|
|
|
@ApiModelProperty(value = "部位类型")
|
|
private String type;
|
|
|
|
@ApiModelProperty(value = "推送目标系统")
|
|
private String pushSystem;
|
|
|
|
@ApiModelProperty(value = "其它项目对应值")
|
|
private String otherParam;
|
|
|
|
@ApiModelProperty(value = "附件")
|
|
private String files;
|
|
|
|
@ApiModelProperty(value = "是否默认显示")
|
|
private Integer isShow;
|
|
|
|
@ApiModelProperty(value = "用户ID")
|
|
private Integer userId;
|
|
|
|
@ApiModelProperty(value = "排序(数字越小越靠前)")
|
|
private Integer sortNumber;
|
|
|
|
@ApiModelProperty(value = "备注")
|
|
private String comments;
|
|
|
|
@ApiModelProperty(value = "状态, 0正常, 1冻结")
|
|
private Integer status;
|
|
|
|
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
|
@TableLogic
|
|
private Integer deleted;
|
|
|
|
@ApiModelProperty(value = "租户id")
|
|
private Integer tenantId;
|
|
|
|
@ApiModelProperty(value = "注册时间")
|
|
private Date createTime;
|
|
|
|
@ApiModelProperty(value = "修改时间")
|
|
private Date updateTime;
|
|
|
|
}
|