43 lines
804 B
Java
43 lines
804 B
Java
package com.sa.zentao.entity;
|
|
|
|
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-06-24
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
public class ZtStoryreview implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Integer story;
|
|
|
|
private Integer version;
|
|
|
|
private String reviewer;
|
|
|
|
private String result;
|
|
|
|
@TableField("reviewDate")
|
|
private Date reviewdate;
|
|
//story 需求, userStory 用户需求 feedback 问题反馈
|
|
@TableField("type")
|
|
private String type;
|
|
|
|
public String getKey(){
|
|
return version+"-"+story;
|
|
}
|
|
}
|