package com.example.demo;
/**
* @author Mr.xiong
* #description model
* #date: 2022/4/8 10:08
* @version v1.0.0
* @since jdk8
*/
public class model {
private int a;
private Integer b;
private double c;
private Double d;
private float e;
private Float f;
private char g;
private Character h;
private String i;
private Object j;
private byte k;
private Byte l;
private short m;
private Short n;
private long o;
private Long p;
private Boolean q;
private boolean r;
public int getA() {
return a;
}
public void setA(int a) {
this.a = a;
}
public Integer getB() {
return b;
}
public void setB(Integer b) {
this.b = b;
}
public double getC() {
return c;
}
public void setC(double c) {
this.c = c;
}
public Double getD() {
return d;
}
public void setD(Double d) {
this.d = d;
}
public float getE() {
return e;
}
public void setE(float e) {
this.e = e;
}
public Float getF() {
return f;
}
public void setF(Float f) {
this.f = f;
}
public char getG() {
return g;
}
public void setG(char g) {
this.g = g;
}
public Character getH() {
return h;
}
public void setH(Character h) {
this.h = h;
}
public String getI() {
return i;
}
public void setI(String i) {
this.i = i;
}
public Object getJ() {
return j;
}
public void setJ(Object j) {
this.j = j;
}
public byte getK() {
return k;
}
public void setK(byte k) {
this.k = k;
}
public Byte getL() {
return l;
}
public void setL(Byte l) {
this.l = l;
}
public short getM() {
return m;
}
public void setM(short m) {
this.m = m;
}
public Short getN() {
return n;
}
public void setN(Short n) {
this.n = n;
}
public long getO() {
return o;
}
public void setO(long o) {
this.o = o;
}
public Long getP() {
return p;
}
public void setP(Long p) {
this.p = p;
}
public Boolean getQ() {
return q;
}
public void setQ(Boolean q) {
this.q = q;
}
public boolean isR() {
return r;
}
public void setR(boolean r) {
this.r = r;
}
}
Java8种基本数据类型及其包装类以及Obj和Str对应的get和set方法
最新推荐文章于 2024-08-22 23:06:05 发布