You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
1.8 KiB
Java

package com.ipsplm.entity.simulation;
9 months ago
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
9 months ago
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
9 months ago
/**
* <p>
* 线OEE
* </p>
*
* @author lulicheng
* @since 2024-07-30
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("oee_bxg")
public class OeeBxg implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
*
*/
private Long flag;
/**
* 线
*/
private String bxgPkL;
/**
* 线
*/
private String bxgZpL;
/**
* 线
*/
private String bxgHjL;
/**
* 线
*/
private String bxgWgj;
/**
* 线
*/
private String bxgZgqd;
/**
* 线
*/
private String bxgXzl;
/**
* 线
*/
private String bxgWthj;
/**
* 线1
*/
private String bxgZppt1;
/**
* 线2
*/
private String bxgZppt2;
/**
* 线1
*/
private String bxgHjgw1;
/**
* 线2
*/
private String bxgHjgw2;
/**
* 线3
*/
private String bxgHjgw3;
/**
* 线
*/
private String bxgYcwj;
/**
* 线
*/
private String bxgSs;
/**
*
*/
private String ts;
}