TArea.java 886 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.szwl.model.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import java.util.Date;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModel;
  7. import io.swagger.annotations.ApiModelProperty;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author wuhs
  16. * @since 2022-07-12
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @ApiModel(value="TArea对象", description="")
  21. public class TArea implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. private Date createDate;
  26. private Date modifyDate;
  27. private Integer orders;
  28. private String fullName;
  29. private String name;
  30. private String treePath;
  31. private Long parent;
  32. private String code;
  33. }