package org.greenrobot.greendao.daotest; import org.greenrobot.greendao.annotation.*; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. Enable "keep" sections if you want to edit. /** * Entity mapped to table "ABCDEF_ENTITY". */ @Entity public class AbcdefEntity { @Id private Long id; private Integer a; private Integer b; private Integer c; private Integer d; private Integer e; private Integer f; private Integer g; private Integer h; private Integer j; private Integer i; private Integer k; @Generated public AbcdefEntity() { } public AbcdefEntity(Long id) { this.id = id; } @Generated public AbcdefEntity(Long id, Integer a, Integer b, Integer c, Integer d, Integer e, Integer f, Integer g, Integer h, Integer j, Integer i, Integer k) { this.id = id; this.a = a; this.b = b; this.c = c; this.d = d; this.e = e; this.f = f; this.g = g; this.h = h; this.j = j; this.i = i; this.k = k; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Integer getA() { return a; } public void setA(Integer a) { this.a = a; } public Integer getB() { return b; } public void setB(Integer b) { this.b = b; } public Integer getC() { return c; } public void setC(Integer c) { this.c = c; } public Integer getD() { return d; } public void setD(Integer d) { this.d = d; } public Integer getE() { return e; } public void setE(Integer e) { this.e = e; } public Integer getF() { return f; } public void setF(Integer f) { this.f = f; } public Integer getG() { return g; } public void setG(Integer g) { this.g = g; } public Integer getH() { return h; } public void setH(Integer h) { this.h = h; } public Integer getJ() { return j; } public void setJ(Integer j) { this.j = j; } public Integer getI() { return i; } public void setI(Integer i) { this.i = i; } public Integer getK() { return k; } public void setK(Integer k) { this.k = k; } }