package com.hk.NumericalCollection.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @TableName MES_NUMERICAL
|
*/
|
@TableName(value = "MES_NUMERICAL_BYCL")
|
@Data
|
@KeySequence(value = "ORDER_SELECT", dbType = DbType.ORACLE)
|
public class MesNumericalBycl implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
/**
|
* ORDER_SELECT
|
*/
|
@TableId
|
private Long id;
|
/**
|
* 工单id
|
*/
|
private Long orderId;
|
/**
|
* 工单编号
|
*/
|
private String orderNo;
|
/**
|
* 日期
|
*/
|
private String editDate;
|
/**
|
* 机台
|
*/
|
private String machineNo;
|
/**
|
* 采集数量
|
*/
|
private Integer cjNum;
|
/**
|
* 采集时间
|
*/
|
private String cjTiem;
|
}
|