first tech blog

37 阅读1分钟

this is my first tech blog

import lombok;
@Data
public class Employee{
    private int salary;
    private int hours;
    public Employee(){
    this.salary = 2000;
    this.hours = 8;
    }
}

this is set for test, more content coming soon.