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.
30 lines
608 B
30 lines
608 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 UsageDate {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
private long checkNum;
|
|
private long productNum;
|
|
private long userNum;
|
|
private String bankAccount;
|
|
private int bankNum;
|
|
private int year;
|
|
private float amount;
|
|
private String startTime;
|
|
|
|
public UsageDate(){};
|
|
private int equation;
|
|
|
|
}
|