package com.hk.NumericalCollection.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @TableName MES_ORDER_SELECT
|
*/
|
@TableName(value = "MES_ORDER_SELECT")
|
@Data
|
public class MesOrderSelect implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
/**
|
* ORDER_SELECT
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
/**
|
* 工单id
|
*/
|
private Long orderId;
|
/**
|
* 工单编号
|
*/
|
private String orderNo;
|
/**
|
* 日期
|
*/
|
private String editDate;
|
/**
|
* 机台
|
*/
|
private String machineNo;
|
/**
|
* 停机次数
|
*/
|
private Integer tjCount;
|
/**
|
* 停机时间(小时)
|
*/
|
private Double tjTime;
|
|
/**
|
* 是否完工 1为完工,0为未完工
|
*/
|
private Integer isShow;
|
}
|