| | |
| | | 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.aspect.annotation.Dict; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.jeecg.common.system.base.entity.JeecgEntity; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 备品备件领用单 |
| | |
| | | * 删除标记 |
| | | */ |
| | | @Excel(name = "删除标记", width = 15) |
| | | @ApiModelProperty(value = "删除标记") |
| | | private Integer delFlag; |
| | | @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | /** |
| | | * 领用单编码 |
| | | */ |
| | |
| | | */ |
| | | @Excel(name = "领用状态", width = 15) |
| | | @ApiModelProperty(value = "领用状态") |
| | | @Dict(dicCode = "receive_status") |
| | | private String receiveStatus; |
| | | /** |
| | | * 是否需要归还;是:存在归还动作,否:直接完成 |
| | | */ |
| | | @Excel(name = "是否需要归还;是:存在归还动作,否:直接完成", width = 15) |
| | | @ApiModelProperty(value = "是否需要归还;是:存在归还动作,否:直接完成") |
| | | @Dict(dicCode = "give_back_flag") |
| | | private String giveBackFlag; |
| | | /** |
| | | * 审核人 |
| | |
| | | @Excel(name = "备注", width = 15) |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 备件领用明细单 |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<Map<String, Object>> sparePartReceiveDetailList; |
| | | |
| | | @TableField(exist = false) |
| | | private List<EamSparePartReceiveDetail> sparePartReceiveDetails; |
| | | |
| | | @TableField(exist = false) |
| | | private List<EamSparePartReceiveDetail> removeDetailList; |
| | | |
| | | } |