package com.ruoyi.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.time.LocalDateTime; /** *

* *

* * @author ojq * @since 2023-03-12 */ @TableName("zf_collection") public class ZfCollection implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 获得时间 */ private LocalDateTime getTime; /** * 类别 */ private String type; /** * 名字 */ private String name; /** * 来源 */ private String source; /** * 拥有者 */ private String owner; /** * 价值 */ private Double price; /** * 存放位置 */ private String location; /** * 备注 */ private String remark; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public LocalDateTime getGetTime() { return getTime; } public void setGetTime(LocalDateTime getTime) { this.getTime = getTime; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSource() { return source; } public void setSource(String source) { this.source = source; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } @Override public String toString() { return "ZfCollection{" + "id=" + id + ", getTime=" + getTime + ", type=" + type + ", name=" + name + ", source=" + source + ", owner=" + owner + ", price=" + price + ", location=" + location + ", remark=" + remark + "}"; } }