40 lines
935 B
Java
40 lines
935 B
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
@Entity
|
|
@Table(name = "LogAcc_T")
|
|
public class LogAcc extends BaseTransaction {
|
|
|
|
@Column(name = "tanggal", nullable = false)
|
|
@Caption(value = "tanggal ")
|
|
private Date tanggal;
|
|
|
|
@Column(name = "noReff", nullable = false)
|
|
@Caption(value = "noReff ")
|
|
private String noReff;
|
|
|
|
@Column(name = "jenisTransaksi", nullable = false)
|
|
@Caption(value = "jenisTransaksi ")
|
|
private String jenisTransaksi;
|
|
|
|
@Column(name = "noPosting")
|
|
@Caption(value = "noPosting ")
|
|
private String noPosting;
|
|
|
|
@Column(name = "status", nullable = false)
|
|
@Caption(value = "status ")
|
|
private Integer status = 0;
|
|
|
|
}
|