12345678910111213141516171819202122232425262728293031323334353637 |
- package cn.cslg.pas.domain.asso;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- /**
- * 架构图片关联表实体类
- */
- @Accessors(chain = true)
- @Data
- @TableName(value = "asso_structure_picture")
- public class AssoStructurePicture implements Serializable {
- /**
- * ID
- */
- private Integer id;
- /**
- * 架构id
- */
- private Integer structureId;
- /**
- * 图片名称
- */
- private String name;
- /**
- * 后缀类型
- */
- private String suffix;
- /**
- * 路径
- */
- private String url;
- }
|