| | |
| | | package org.jeecg.modules.eam.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | 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; |
| | | |
| | |
| | | * 删除标记 |
| | | */ |
| | | @Excel(name = "删除标记", width = 15) |
| | | @ApiModelProperty(value = "删除标记") |
| | | private Integer delFlag; |
| | | @JsonIgnore |
| | | @ApiModelProperty(value = "删除状态(0-正常,1-已删除)", hidden = true) |
| | | @TableLogic |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | /** |
| | | * 备件编码 |
| | | */ |
| | |
| | | */ |
| | | @Excel(name = "备件分类", width = 15) |
| | | @ApiModelProperty(value = "备件分类") |
| | | @Dict(dicCode = "spare_part_category") |
| | | private String partCategory; |
| | | /** |
| | | * 备件型号 |
| | |
| | | @Excel(name = "备注", width = 15) |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | |
| | | /** |
| | | * 库存总数量 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String totalQuantity; |
| | | } |