You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
675 B
33 lines
675 B
package com.example.demo.bean;
|
|
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
@Getter
|
|
@Setter
|
|
@Entity
|
|
public class Audit {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private long checkNum;
|
|
private long userNum;
|
|
private double amount;
|
|
private String applyTime;
|
|
private String bankAccount;
|
|
private long checkState;
|
|
private long contractNum;
|
|
private short isSignContract;
|
|
private long productNum;
|
|
private int year;
|
|
private int equation;
|
|
|
|
|
|
public Audit(){};
|
|
}
|