package org.jeecg.modules.mdc.entity;
|
|
import java.io.Serializable;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
/**
|
* @Description: 零件表
|
* @Author: lius
|
* @Date: 2024-10-18
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("Component_Info")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "Component_Info对象", description = "零件表")
|
public class ComponentInfo implements Serializable {
|
|
private static final long serialVersionUID = -9191357592954290074L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
@ApiModelProperty(value = "id")
|
private String id;
|
/**
|
* componentNo
|
*/
|
@Excel(name = "componentNo", width = 15)
|
@ApiModelProperty(value = "componentNo")
|
private String componentNo;
|
/**
|
* componentName
|
*/
|
@Excel(name = "componentName", width = 15)
|
@ApiModelProperty(value = "componentName")
|
private String componentName;
|
/**
|
* scheduleNum
|
*/
|
@Excel(name = "scheduleNum", width = 15)
|
@ApiModelProperty(value = "scheduleNum")
|
private Integer scheduleNum;
|
/**
|
* dayNum
|
*/
|
@Excel(name = "dayNum", width = 15)
|
@ApiModelProperty(value = "dayNum")
|
private Integer dayNum;
|
/**
|
* beltlineid
|
*/
|
@Excel(name = "beltlineid", width = 15)
|
@ApiModelProperty(value = "beltlineid")
|
private String beltlineid;
|
/**
|
* overallflag
|
*/
|
@Excel(name = "overallflag", width = 15)
|
@ApiModelProperty(value = "overallflag")
|
private Boolean overallflag;
|
/**
|
* equipmentids
|
*/
|
@Excel(name = "equipmentids", width = 15)
|
@ApiModelProperty(value = "equipmentids")
|
private String equipmentids;
|
}
|