123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- package com.bosshand.virgo.api.model;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.util.Date;
- import java.util.List;
- /**
- * 项目
- */
- public class Project {
- private long id;
- /**
- * 类型
- */
- private Integer type;
- /**
- * 创建时间
- */
- @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private Date createDate;
- /**
- * 组织id
- */
- private long organizationId;
- /**
- * 组织名称
- */
- private String organizationName;
- /**
- * 名称
- */
- private String name;
- /**
- * 位置
- */
- private String address;
- /**
- * 照片
- */
- private String picture;
- /**
- * 标签ids
- */
- private String tagIds;
- /**
- * 描述
- */
- private String comment;
- /**
- * 地理坐标
- */
- private String coordinates;
- /**
- * 自定义字段
- */
- private String data;
- private List<ProjectItem> projectItemList;
- public long getId() {
- return id;
- }
- public void setId(long id) {
- this.id = id;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public Date getCreateDate() {
- return createDate;
- }
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- public long getOrganizationId() {
- return organizationId;
- }
- public void setOrganizationId(long organizationId) {
- this.organizationId = organizationId;
- }
- public String getOrganizationName() {
- return organizationName;
- }
- public void setOrganizationName(String organizationName) {
- this.organizationName = organizationName;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getPicture() {
- return picture;
- }
- public void setPicture(String picture) {
- this.picture = picture;
- }
- public String getTagIds() {
- return tagIds;
- }
- public void setTagIds(String tagIds) {
- this.tagIds = tagIds;
- }
- public String getComment() {
- return comment;
- }
- public void setComment(String comment) {
- this.comment = comment;
- }
- public String getCoordinates() {
- return coordinates;
- }
- public void setCoordinates(String coordinates) {
- this.coordinates = coordinates;
- }
- public String getData() {
- return data;
- }
- public void setData(String data) {
- this.data = data;
- }
- public List<ProjectItem> getProjectItemList() {
- return projectItemList;
- }
- public void setProjectItemList(List<ProjectItem> projectItemList) {
- this.projectItemList = projectItemList;
- }
- }
|