package com.ard.work.location_note.domain;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ard.common.core.annotation.Excel;
|
import com.ard.common.core.web.domain.BaseEntity;
|
|
import java.util.Date;
|
|
/**
|
* 注记对象 ard_location_note
|
*
|
* @author ruoyi
|
* @date 2025-03-25
|
*/
|
public class ArdLocationNote
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private String areaId;
|
|
/** 注记名称 */
|
@Excel(name = "注记名称")
|
private String areaName;
|
|
/** 0:点,1:线,2:面 */
|
@Excel(name = "0:点,1:线,2:面")
|
private Integer areaType;
|
|
/** 注记的位置信息 */
|
@Excel(name = "注记的位置信息")
|
private String areaPosition;
|
|
/** 注记颜色 */
|
@Excel(name = "注记颜色")
|
private String areaColour;
|
|
/** 注记备注 */
|
@Excel(name = "注记备注")
|
private String areaNotes;
|
|
/** 创建人部门id */
|
@Excel(name = "创建人部门id")
|
private String creatorDeptId;
|
|
/** 创建者 */
|
private String createBy;
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/** 更新者 */
|
private String updateBy;
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date updateTime;
|
|
public void setAreaId(String areaId)
|
{
|
this.areaId = areaId;
|
}
|
|
public String getAreaId()
|
{
|
return areaId;
|
}
|
public void setAreaName(String areaName)
|
{
|
this.areaName = areaName;
|
}
|
|
public String getAreaName()
|
{
|
return areaName;
|
}
|
public void setAreaType(Integer areaType)
|
{
|
this.areaType = areaType;
|
}
|
|
public Integer getAreaType()
|
{
|
return areaType;
|
}
|
public void setAreaPosition(String areaPosition)
|
{
|
this.areaPosition = areaPosition;
|
}
|
|
public String getAreaPosition()
|
{
|
return areaPosition;
|
}
|
public void setAreaColour(String areaColour)
|
{
|
this.areaColour = areaColour;
|
}
|
|
public String getAreaColour()
|
{
|
return areaColour;
|
}
|
public void setAreaNotes(String areaNotes)
|
{
|
this.areaNotes = areaNotes;
|
}
|
|
public String getAreaNotes()
|
{
|
return areaNotes;
|
}
|
|
public String getCreatorDeptId() {
|
return creatorDeptId;
|
}
|
|
public void setCreatorDeptId(String creatorDeptId) {
|
this.creatorDeptId = creatorDeptId;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("areaId", getAreaId())
|
.append("areaName", getAreaName())
|
.append("areaType", getAreaType())
|
.append("areaPosition", getAreaPosition())
|
.append("areaColour", getAreaColour())
|
.append("areaNotes", getAreaNotes())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("creatorDeptId", getCreatorDeptId())
|
.toString();
|
}
|
}
|