package com.qianwen.smartman.modules.workinghour.entity;
|
|
import java.time.LocalDateTime;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
/**
|
* 零件加工过程数据
|
*/
|
@TableName("part_working_process")
|
public class PartWorkingProcess{
|
long id;
|
/**
|
* 零件编号
|
*/
|
private String progName;
|
|
/**
|
* 工位id
|
* */
|
private long workinghourId;
|
/**
|
* 开始时间*/
|
private LocalDateTime startTime;
|
/**
|
* 结束时间
|
*/
|
private LocalDateTime endTime;
|
|
/**
|
* 设备状态
|
*/
|
private Integer deviceStatus;
|
|
public long getId() {
|
return id;
|
}
|
public void setId(long id) {
|
this.id = id;
|
}
|
public String getProgName() {
|
return progName;
|
}
|
public void setProgName(String progName) {
|
this.progName = progName;
|
}
|
public long getWorkinghourId() {
|
return workinghourId;
|
}
|
public void setWorkinghourId(long workinghourId) {
|
this.workinghourId = workinghourId;
|
}
|
public LocalDateTime getStartTime() {
|
return startTime;
|
}
|
public void setStartTime(LocalDateTime startTime) {
|
this.startTime = startTime;
|
}
|
public LocalDateTime getEndTime() {
|
return endTime;
|
}
|
public void setEndTime(LocalDateTime endTime) {
|
this.endTime = endTime;
|
}
|
public Integer getDeviceStatus() {
|
return deviceStatus;
|
}
|
public void setDeviceStatus(Integer deviceStatus) {
|
this.deviceStatus = deviceStatus;
|
}
|
|
|
}
|