123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.ruoyi.asset.domain;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- 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;
- /**
- * 地点对象 tb_place
- *
- * @author 原动力
- * @date 2023-03-27
- */
- @TableName("tb_place")
- public class TbPlace extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 编号 */
- @Excel(name = "编号")
- @TableId("id")
- @JsonFormat(shape = JsonFormat.Shape.STRING)
- private Long id;
- /** 地点名称 */
- @Excel(name = "地点名称")
- @TableField("name")
- private String name;
- /** 用途 */
- @Excel(name = "用途")
- @TableField("purpose")
- private String purpose;
- 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 setPurpose(String purpose)
- {
- this.purpose = purpose;
- }
- public String getPurpose()
- {
- return purpose;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("name", getName())
- .append("purpose", getPurpose())
- .toString();
- }
- }
|