package cn.stylefeng.guns.modular.zsx.sys.kanbanConf.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 看板配置
|
* </p>
|
*
|
* @author ruimin
|
* @since 2023-10-08
|
*/
|
@TableName("sys_kanban_conf")
|
public class KanbanConf implements Serializable {
|
|
private static final long serialVersionUID=1L;
|
|
/**
|
* ID
|
*/
|
@TableId(value = "id", type = IdType.ID_WORKER)
|
private Long id;
|
|
/**
|
* 页面编号
|
*/
|
@TableField("page_code")
|
private String pageCode;
|
|
/**
|
* ip地址
|
*/
|
@TableField("ip_address")
|
private String ipAddress;
|
|
/**
|
* MAC地址
|
*/
|
@TableField("mac_address")
|
private String macAddress;
|
|
/**
|
* 车间编号
|
*/
|
@TableField("workshop_code")
|
private String workshopCode;
|
|
/**
|
* 车间名称
|
*/
|
@TableField("workshop_name")
|
private String workshopName;
|
|
/**
|
* 产线编号
|
*/
|
@TableField("line_code")
|
private String lineCode;
|
|
/**
|
* 产线名称
|
*/
|
@TableField("line_name")
|
private String lineName;
|
|
/**
|
* 工位编码
|
*/
|
@TableField("location_code")
|
private String locationCode;
|
|
/**
|
* 工位名称
|
*/
|
@TableField("location_name")
|
private String locationName;
|
|
/**
|
* 仓库编号
|
*/
|
@TableField("warehouse_code")
|
private String warehouseCode;
|
|
/**
|
* 仓库名称
|
*/
|
@TableField("warehouse_name")
|
private String warehouseName;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getPageCode() {
|
return pageCode;
|
}
|
|
public void setPageCode(String pageCode) {
|
this.pageCode = pageCode;
|
}
|
|
public String getIpAddress() {
|
return ipAddress;
|
}
|
|
public void setIpAddress(String ipAddress) {
|
this.ipAddress = ipAddress;
|
}
|
|
public String getMacAddress() {
|
return macAddress;
|
}
|
|
public void setMacAddress(String macAddress) {
|
this.macAddress = macAddress;
|
}
|
|
public String getWorkshopCode() {
|
return workshopCode;
|
}
|
|
public void setWorkshopCode(String workshopCode) {
|
this.workshopCode = workshopCode;
|
}
|
|
public String getWorkshopName() {
|
return workshopName;
|
}
|
|
public void setWorkshopName(String workshopName) {
|
this.workshopName = workshopName;
|
}
|
|
public String getLineCode() {
|
return lineCode;
|
}
|
|
public void setLineCode(String lineCode) {
|
this.lineCode = lineCode;
|
}
|
|
public String getLineName() {
|
return lineName;
|
}
|
|
public void setLineName(String lineName) {
|
this.lineName = lineName;
|
}
|
|
public String getLocationCode() {
|
return locationCode;
|
}
|
|
public void setLocationCode(String locationCode) {
|
this.locationCode = locationCode;
|
}
|
|
public String getLocationName() {
|
return locationName;
|
}
|
|
public void setLocationName(String locationName) {
|
this.locationName = locationName;
|
}
|
|
public String getWarehouseCode() {
|
return warehouseCode;
|
}
|
|
public void setWarehouseCode(String warehouseCode) {
|
this.warehouseCode = warehouseCode;
|
}
|
|
public String getWarehouseName() {
|
return warehouseName;
|
}
|
|
public void setWarehouseName(String warehouseName) {
|
this.warehouseName = warehouseName;
|
}
|
|
@Override
|
public String toString() {
|
return "KanbanConf{" +
|
"id=" + id +
|
", pageCode=" + pageCode +
|
", ipAddress=" + ipAddress +
|
", macAddress=" + macAddress +
|
", workshopCode=" + workshopCode +
|
", workshopName=" + workshopName +
|
", lineCode=" + lineCode +
|
", lineName=" + lineName +
|
", locationCode=" + locationCode +
|
", locationName=" + locationName +
|
", warehouseCode=" + warehouseCode +
|
", warehouseName=" + warehouseName +
|
"}";
|
}
|
}
|