AssoStructurePicture.java 651 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package cn.cslg.pas.domain.asso;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.Data;
  4. import lombok.experimental.Accessors;
  5. import java.io.Serializable;
  6. /**
  7. * 架构图片关联表实体类
  8. */
  9. @Accessors(chain = true)
  10. @Data
  11. @TableName(value = "asso_structure_picture")
  12. public class AssoStructurePicture implements Serializable {
  13. /**
  14. * ID
  15. */
  16. private Integer id;
  17. /**
  18. * 架构id
  19. */
  20. private Integer structureId;
  21. /**
  22. * 图片名称
  23. */
  24. private String name;
  25. /**
  26. * 后缀类型
  27. */
  28. private String suffix;
  29. /**
  30. * 路径
  31. */
  32. private String url;
  33. }