Blame view

src/main/java/com/huaheng/pc/manager/brcode/domain/BrCode.java 2.01 KB
yh.liu authored
1
2
3
4
5
6
7
8
9
10
//: com/huaheng/pc/manager/brcode/domain/BrCode.java
package com.huaheng.pc.manager.brcode.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.io.Serializable;
11
import java.util.Date; // SyntaxError sql->util
yh.liu authored
12
13
14
15
16
17

/** A class comment */
/**
 *
 */
@Data
18
@TableName(value = "excel_brcode")
yh.liu authored
19
20
21
22
23
24
public class BrCode implements Serializable {
  /** A field comment */
  private static final long serialVersionUID = 1L;
  /** A method comment */
  @TableId(value = "id", type = IdType.AUTO)
  private Long id;
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  @TableField(value = "code")
  private String code;
  @TableField(value = "description")
  private String description;
  @TableField(value = "created")
  private Date created;
  @TableField(value = "createdBy")
  private String createdBy;
  @TableField(value = "lastUpdated")
  private Date lastUpdated;
  @TableField(value = "lastUpdatedBy")
  private String lastUpdatedBy;

  public Long getId () {
    return id;
  }

  public void setId (Long id) {
    this.id = id;
  }

  public String getCode () {
    return code;
  }

  public void setCode (String code) {
    this.code = code;
  }

  public String getDescription () {
    return description;
  }

  public void setDescription (String description) {
    this.description = description;
  }

  public Date getCreated () {
    return created;
  }

  public void setCreated (Date created) {
    this.created = created;
  }

  public String getCreatedBy () {
    return createdBy;
  }

  public void setCreatedBy (String createdBy) {
    this.createdBy = createdBy;
  }

  public Date getLastUpdated () {
    return lastUpdated;
  }

  public void setLastUpdated (Date lastUpdated) {
    this.lastUpdated = lastUpdated;
  }

  public String getLastUpdatedBy () {
    return lastUpdatedBy;
  }

  public void setLastUpdatedBy (String lastUpdatedBy) {
    this.lastUpdatedBy = lastUpdatedBy;
  }
yh.liu authored
94
95
96


} ///:~