| | |
| | | package org.jeecg.modules.eam.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | 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.constant.CommonConstant; |
| | | import org.jeecg.common.system.base.entity.JeecgEntity; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | |
| | |
| | | * 删除标记 |
| | | */ |
| | | @Excel(name = "删除标记", width = 15) |
| | | @ApiModelProperty(value = "删除标记") |
| | | private Integer delFlag; |
| | | @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | /** |
| | | * 备件ID |
| | | */ |
| | |
| | | @Excel(name = "领用类型;领用/归还", width = 15) |
| | | @ApiModelProperty(value = "领用类型;领用/归还") |
| | | private String receiveType; |
| | | |
| | | /** |
| | | * 领用单id |
| | | */ |
| | | @Excel(name = "领用单id", width = 15) |
| | | @ApiModelProperty(value = "领用单id") |
| | | private String sparePartReceiveId; |
| | | |
| | | @TableField(exist = false) |
| | | private String partCode; |
| | | |
| | | @TableField(exist = false) |
| | | private String partName; |
| | | |
| | | @TableField(exist = false) |
| | | private String partModel; |
| | | |
| | | @TableField(exist = false) |
| | | private String partSpecification; |
| | | } |