Skip to content

Instantly share code, notes, and snippets.

@tassioauad
Created November 12, 2016 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tassioauad/137e6b2a3560993d0bced274b61b8b21 to your computer and use it in GitHub Desktop.
Save tassioauad/137e6b2a3560993d0bced274b61b8b21 to your computer and use it in GitHub Desktop.
@Entity
public class SalesAccounting implements Serializable {
@Id
@Column(name = "employee")
private String employeeName;
@Column(name = "conversion_rate")
private Float conversionRate;
@Column(name = "sales_amount")
private Integer salesAmount;
@Column(name = "item_sales_amount")
private Integer itemSalesAmount;
@Column(name = "attendance_amount")
private Integer attendanceAmount;
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment