| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.AllArgsConstructor; |
| | |
| | | @TableName("tb_attach_lock") |
| | | @ApiModel(value="AttachLock", description="") |
| | | public class AttachLock implements Serializable { |
| | | private int id; |
| | | private Integer id; |
| | | private int materialId; |
| | | |
| | | @TableField(exist = false) |
| | | private String subName; |
| | | |
| | | private int productId; |
| | | |
| | | @TableField(exist = false) |
| | | private String parentName; |
| | | |
| | | private String attachName; |
| | | private int lockFlag; |
| | | private String localReason; |