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.
87 lines
1.7 KiB
87 lines
1.7 KiB
2 years ago
|
package com.ruoyi.tcZz.domain;
|
||
|
|
||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
|
import com.ruoyi.common.annotation.Excel;
|
||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
||
|
/**
|
||
|
* 地图统计对象 tc_map
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2023-10-12
|
||
|
*/
|
||
|
public class TcMap extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
private Long id;
|
||
|
|
||
|
/** 名称 */
|
||
|
@Excel(name = "名称")
|
||
|
private String name;
|
||
|
|
||
|
/** 数量 */
|
||
|
@Excel(name = "数量")
|
||
|
private String count;
|
||
|
|
||
|
/** 1.国际
|
||
|
2.国内
|
||
|
*/
|
||
|
@Excel(name = "1.国际 2.国内")
|
||
|
private Long type;
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setName(String name)
|
||
|
{
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
public String getName()
|
||
|
{
|
||
|
return name;
|
||
|
}
|
||
|
public void setCount(String count)
|
||
|
{
|
||
|
this.count = count;
|
||
|
}
|
||
|
|
||
|
public String getCount()
|
||
|
{
|
||
|
return count;
|
||
|
}
|
||
|
public void setType(Long type)
|
||
|
{
|
||
|
this.type = type;
|
||
|
}
|
||
|
|
||
|
public Long getType()
|
||
|
{
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("name", getName())
|
||
|
.append("count", getCount())
|
||
|
.append("type", getType())
|
||
|
.append("createBy", getCreateBy())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.append("updateBy", getUpdateBy())
|
||
|
.append("updateTime", getUpdateTime())
|
||
|
.append("remark", getRemark())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|