first commit
This commit is contained in:
203
src/main/java/com/sa/zentao/dao/ZtStoryUserDTO.java
Normal file
203
src/main/java/com/sa/zentao/dao/ZtStoryUserDTO.java
Normal file
@ -0,0 +1,203 @@
|
||||
package com.sa.zentao.dao;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author gqb
|
||||
* @since 2024-10-21
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class ZtStoryUserDTO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
private String vision;
|
||||
|
||||
private Integer parent;
|
||||
|
||||
private Integer product;
|
||||
|
||||
private Integer project;
|
||||
|
||||
private Integer branch;
|
||||
|
||||
private Integer module;
|
||||
|
||||
private String plan;
|
||||
|
||||
private String source;
|
||||
|
||||
@TableField("sourceNote")
|
||||
private String sourcenote;
|
||||
|
||||
@TableField("fromBug")
|
||||
private Integer frombug;
|
||||
|
||||
private Integer feedback;
|
||||
|
||||
private String title;
|
||||
|
||||
private String keywords;
|
||||
|
||||
private String type;
|
||||
|
||||
private String category;
|
||||
|
||||
private Integer pri;
|
||||
|
||||
private Float estimate;
|
||||
|
||||
private String status;
|
||||
|
||||
@TableField("subStatus")
|
||||
private String substatus;
|
||||
|
||||
private String color;
|
||||
|
||||
private String stage;
|
||||
|
||||
@TableField("stagedBy")
|
||||
private String stagedby;
|
||||
|
||||
private String mailto;
|
||||
|
||||
private Integer lib;
|
||||
|
||||
@TableField("fromStory")
|
||||
private Integer fromstory;
|
||||
|
||||
@TableField("fromVersion")
|
||||
private Integer fromversion;
|
||||
|
||||
@TableField("openedBy")
|
||||
private String openedby;
|
||||
|
||||
@TableField("openedDate")
|
||||
private LocalDateTime openeddate;
|
||||
|
||||
@TableField("assignedTo")
|
||||
private String assignedto;
|
||||
|
||||
@TableField("assignedDate")
|
||||
private Date assigneddate;
|
||||
|
||||
@TableField("approvedDate")
|
||||
private Date approveddate;
|
||||
|
||||
@TableField("lastEditedBy")
|
||||
private String lasteditedby;
|
||||
|
||||
@TableField("lastEditedDate")
|
||||
private Date lastediteddate;
|
||||
|
||||
@TableField("changedBy")
|
||||
private String changedby;
|
||||
|
||||
@TableField("changedDate")
|
||||
private Date changeddate;
|
||||
|
||||
@TableField("reviewedBy")
|
||||
private String reviewedby;
|
||||
|
||||
@TableField("reviewedDate")
|
||||
private Date revieweddate;
|
||||
|
||||
@TableField("releasedDate")
|
||||
private Date releaseddate;
|
||||
|
||||
@TableField("closedBy")
|
||||
private String closedby;
|
||||
|
||||
@TableField("closedDate")
|
||||
private Date closeddate;
|
||||
|
||||
@TableField("closedReason")
|
||||
private String closedreason;
|
||||
|
||||
@TableField("activatedDate")
|
||||
private Date activateddate;
|
||||
|
||||
@TableField("toBug")
|
||||
private Integer tobug;
|
||||
|
||||
@TableField("childStories")
|
||||
private String childstories;
|
||||
|
||||
@TableField("linkStories")
|
||||
private String linkstories;
|
||||
|
||||
@TableField("linkRequirements")
|
||||
private String linkrequirements;
|
||||
|
||||
private String twins;
|
||||
|
||||
@TableField("duplicateStory")
|
||||
private Integer duplicatestory;
|
||||
|
||||
private Integer version;
|
||||
|
||||
@TableField("storyChanged")
|
||||
private String storychanged;
|
||||
|
||||
@TableField("feedbackBy")
|
||||
private String feedbackby;
|
||||
|
||||
@TableField("notifyEmail")
|
||||
private String notifyemail;
|
||||
|
||||
@TableField("BSA")
|
||||
private String bsa;
|
||||
|
||||
private String duration;
|
||||
|
||||
private Integer demand;
|
||||
|
||||
@TableField("submitedBy")
|
||||
private String submitedby;
|
||||
|
||||
private String roadmap;
|
||||
|
||||
@TableField("URChanged")
|
||||
private String urchanged;
|
||||
|
||||
private String deleted;
|
||||
|
||||
private Date planStartDate;
|
||||
|
||||
private Date planEndDate;
|
||||
|
||||
private Date startDate;
|
||||
|
||||
private Date endDate;
|
||||
|
||||
/**
|
||||
* 1通过 2不通过
|
||||
*/
|
||||
private Integer ysFlag;
|
||||
|
||||
|
||||
private String spec;
|
||||
|
||||
private String fileUrl;
|
||||
|
||||
private String remark;
|
||||
|
||||
private String storyList;
|
||||
}
|
Reference in New Issue
Block a user