98 lines
1.8 KiB
Java
98 lines
1.8 KiB
Java
package com.sa.zentao.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import java.time.LocalDate;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import java.time.LocalDateTime;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author gqb
|
|
* @since 2024-12-26
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
public class ZtRelease implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
private Integer project;
|
|
|
|
private Integer product;
|
|
|
|
private String branch;
|
|
|
|
private Integer shadow;
|
|
|
|
private String build;
|
|
@TableField("`name`")
|
|
private String name;
|
|
|
|
private String marker;
|
|
|
|
private Date date;
|
|
|
|
private String stories;
|
|
|
|
private String bugs;
|
|
|
|
@TableField("leftBugs")
|
|
private String leftbugs;
|
|
@TableField("`desc`")
|
|
private String desc;
|
|
|
|
private String mailto;
|
|
|
|
private String notify;
|
|
//reviewing待评审
|
|
//waitRelease 待发布
|
|
//released 发不成功
|
|
//close 发布失败
|
|
@TableField("`status`")
|
|
private String status;
|
|
|
|
@TableField("subStatus")
|
|
private String substatus;
|
|
|
|
@TableField("createdBy")
|
|
private String createdby;
|
|
|
|
@TableField("createdDate")
|
|
private Date createddate;
|
|
|
|
private String deleted;
|
|
|
|
private String executions;
|
|
@TableField("`level`")
|
|
private String level;
|
|
|
|
private String danger;
|
|
|
|
private String assignedTo;
|
|
|
|
private Date releaseDate;
|
|
|
|
private String noticeTitle;
|
|
|
|
private String noticeContent;
|
|
|
|
|
|
private String failRemark;
|
|
|
|
private String releaseFailRemark;
|
|
|
|
private String releaseUser;
|
|
}
|