| | |
| | | package com.ruoyi.oa.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.experimental.Accessors; |
| | |
| | | private static final long serialVersionUID=1L; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId(value = "id") |
| | | private Long id; |
| | |
| | | /** |
| | | * 生产厂商 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private Long manufacturerId; |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String remarks; |
| | | /** |
| | | * 附件 |
| | | */ |
| | | private String filePath; |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableLogic |
| | | private String delFlag; |
| | | |
| | | @ApiModelProperty(value = "账户") |
| | | private String account; |
| | | |
| | | @ApiModelProperty(value = "访问地址") |
| | | private String address; |
| | | } |