Blame view

fw-rp-domain/src/main/java/cn/fw/rp/db/ProblemList.java 635 Bytes
0b3d3960   suchu   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  package cn.fw.rp.db;
  
  import cn.fw.data.base.db.annotation.DbTable;
  import lombok.Data;
  
  import java.util.Date;
  
  /**
   * @author suchu
   * @since 2018/5/8 15:18
   */
  @DbTable("problem_list")
  @Data
  public class ProblemList {
  
      private Integer id;
  
      private String systemRef;
  
      private String moduleRef;
  
      private String title;
      private String content;
  
      private String purpose;
  
      private String question;
  
      private String scenarios;
  
      private String logic;
  
      private Integer status;
  
      private Date createTime;
  
      private Date updateTime;
  
      private String createUser;
  
      private String updateUser;
  }