package org.jeecg.modules.eam.entity;
|
|
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.jeecg.common.system.base.entity.JeecgEntity;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* @Description: 三保备件明细
|
* @Author: jeecg-boot
|
* @Date: 2025-07-11
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("eam_third_maintenance_spare")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "eam_third_maintenance_spare对象", description = "三保备件明细")
|
public class EamThirdMaintenanceSpare extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = -164548817301978100L;
|
|
/**
|
* 备件名称
|
*/
|
@Excel(name = "备件名称", width = 15)
|
@ApiModelProperty(value = "备件名称")
|
private String spareName;
|
/**
|
* 备件型号
|
*/
|
@Excel(name = "备件型号", width = 15)
|
@ApiModelProperty(value = "备件型号")
|
private String spareModel;
|
/**
|
* 使用数量
|
*/
|
@Excel(name = "使用数量", width = 15)
|
@ApiModelProperty(value = "使用数量")
|
private BigDecimal spareQuantity;
|
/**
|
* 备注
|
*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
}
|