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;
|
|
/**
|
* <p>
|
* 保洁收纳表
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-12
|
*/
|
@TableName("zf_clean")
|
public class ZfClean implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 0:保洁,1:收纳
|
*/
|
private Integer kind;
|
|
/**
|
* 适用人
|
*/
|
private String suitable;
|
|
/**
|
* 类别
|
*/
|
private String type;
|
|
/**
|
* 保洁方法
|
*/
|
private String method;
|
|
/**
|
* 材料存放地
|
*/
|
private String place;
|
|
/**
|
* 放置地点
|
*/
|
private String location;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getKind() {
|
return kind;
|
}
|
|
public void setKind(Integer kind) {
|
this.kind = kind;
|
}
|
|
public String getSuitable() {
|
return suitable;
|
}
|
|
public void setSuitable(String suitable) {
|
this.suitable = suitable;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getMethod() {
|
return method;
|
}
|
|
public void setMethod(String method) {
|
this.method = method;
|
}
|
|
public String getPlace() {
|
return place;
|
}
|
|
public void setPlace(String place) {
|
this.place = place;
|
}
|
|
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 "ZfClean{" +
|
"id=" + id +
|
", kind=" + kind +
|
", suitable=" + suitable +
|
", type=" + type +
|
", method=" + method +
|
", place=" + place +
|
", location=" + location +
|
", remark=" + remark +
|
"}";
|
}
|
}
|