Update Habsen
Pembuatan kolom tag untuk menandai presensi sebagai masuk atau keluar/pulang
This commit is contained in:
parent
81f098c596
commit
b30061a52c
@ -81,6 +81,14 @@ public class Habsen extends BaseModel {
|
|||||||
@Caption(value = "Jenis Presensi")
|
@Caption(value = "Jenis Presensi")
|
||||||
private Integer jenisPresensi;
|
private Integer jenisPresensi;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 0. Presensi keluar/pulang<br/>
|
||||||
|
* 1. Presensi masuk
|
||||||
|
*/
|
||||||
|
@Column(name = "tag", nullable = true)
|
||||||
|
@Caption(value = "Tag")
|
||||||
|
private Short tag;
|
||||||
|
|
||||||
public Integer getTr_no() {
|
public Integer getTr_no() {
|
||||||
return tr_no;
|
return tr_no;
|
||||||
}
|
}
|
||||||
@ -201,4 +209,12 @@ public class Habsen extends BaseModel {
|
|||||||
this.jenisPresensi = jenisPresensi;
|
this.jenisPresensi = jenisPresensi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Short getTag() {
|
||||||
|
return tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTag(Short tag) {
|
||||||
|
this.tag = tag;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -58,6 +58,9 @@ public class HabsenVO extends BaseMasterVO {
|
|||||||
@Caption(value = "imageURLData")
|
@Caption(value = "imageURLData")
|
||||||
private String imageURLData;
|
private String imageURLData;
|
||||||
|
|
||||||
|
@Caption(value = "tag")
|
||||||
|
private Short tag;
|
||||||
|
|
||||||
public Integer getTr_no() {
|
public Integer getTr_no() {
|
||||||
return tr_no;
|
return tr_no;
|
||||||
}
|
}
|
||||||
@ -194,4 +197,12 @@ public class HabsenVO extends BaseMasterVO {
|
|||||||
this.imageURLData = imageURLData;
|
this.imageURLData = imageURLData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Short getTag() {
|
||||||
|
return tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTag(Short tag) {
|
||||||
|
this.tag = tag;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user