88 lines
1.9 KiB
Plaintext
88 lines
1.9 KiB
Plaintext
package com.cmeim.basic.vo;
|
|
|
|
import com.alibaba.excel.metadata.BaseRowModel;
|
|
import com.cmeim.basic.query.annotation.FieldProps;
|
|
import com.cmeim.basic.query.annotation.FieldType;
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.*;
|
|
|
|
/**
|
|
* @author 李俊辉
|
|
* @version 1.0
|
|
* date: 2022/7/8
|
|
*/
|
|
@Data
|
|
public class BaBomVo extends BaseRowModel{
|
|
@ApiParam(value = "ID")
|
|
private Long id;
|
|
|
|
@ApiParam(value = "母件编码")
|
|
private String code;
|
|
|
|
@ApiParam(value = "母件名称")
|
|
private String name;
|
|
|
|
@ApiParam(value = "母件描述")
|
|
private String description;
|
|
|
|
@ApiParam(value = "当前版本")
|
|
private String revision;
|
|
|
|
@ApiParam(value = "版本说明")
|
|
private String revisionDescription;
|
|
|
|
@ApiParam(value = "版本日期")
|
|
private String revisionDt;
|
|
|
|
@ApiParam(value = "状态")
|
|
private Integer dictStatus;
|
|
|
|
@ApiParam(value = "母件单位")
|
|
private String unit;
|
|
|
|
@ApiParam(value = "母件损耗率")
|
|
private String lossRate;
|
|
|
|
@ApiParam(value = "类型")
|
|
private Integer dictType;
|
|
|
|
@ApiParam(value = "是否生效的版本")
|
|
private Integer currentRevision;
|
|
|
|
@ApiParam(value = "模板")
|
|
private Integer template;
|
|
|
|
@ApiParam(value = "创建人")
|
|
private String createdBy;
|
|
|
|
@ApiParam(value = "创建时间")
|
|
private String createdDt;
|
|
|
|
@ApiParam(value = "更新人")
|
|
private String updatedBy;
|
|
|
|
@ApiParam(value = "更新时间")
|
|
private String updatedDt;
|
|
|
|
@ApiParam(value = "产成品类型")
|
|
private Integer dictMaterialType;
|
|
|
|
@ApiParam(value = "是否3C产品")
|
|
private String ccc;
|
|
|
|
@ApiParam(value = "HS/HSF")
|
|
private String hsHsf;
|
|
|
|
@ApiParam(value = "特殊属性")
|
|
private String specialProperties;
|
|
|
|
@ApiParam(value = "文件编号")
|
|
private String fileNumbering;
|
|
|
|
|
|
@ApiParam(value = "文件服务器的地址")
|
|
private String fileUrl;
|
|
}
|