| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.seecoder.dataanalysis.data.entity.devcloud;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- import org.springframework.data.annotation.Id;
- import org.springframework.data.mongodb.core.mapping.Field;
- @NoArgsConstructor
- @AllArgsConstructor
- @Accessors(chain = true)
- @Data
- public class BugInfo {
- /**
- * bug ID
- */
- @Id
- @Field("bug_id")
- private Integer bugId;
- /**
- * 用户 ID
- */
- @Field("user_id")
- private Integer userId;
- /**
- * 优先级
- */
- @Field("priority")
- private String priority;
- /**
- * 标题
- */
- @Field("title")
- private String title;
- /**
- * 描述
- */
- @Field("description")
- private String description;
- /**
- * 耗费时间
- */
- @Field("time_to_take")
- private Integer timeToTake;
- /**
- * bug 状态
- */
- @Field("bug_state")
- private String bugState;
- }
|