|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package vn.azteam.tpf.service.dto;
-
- import vn.azteam.tpf.domain.TBCodeStatusEnum;
-
- import java.io.Serializable;
- import java.time.Instant;
-
- public class TBCodeDetailsDTO implements Serializable {
-
- private Long id;
-
- private String code;
-
- private Integer numberScan;
-
- private TBCodeStatusEnum status;
-
- private Instant createdDate;
-
- private Instant modifiedDate;
-
- private Instant deletedDate;
-
- private Long createdById;
-
- private Long modifiedById;
-
- private Long deletedById;
-
- public Long getId() {
- return id;
- }
-
- public void setId(Long id) {
- this.id = id;
- }
-
- public String getCode() {
- return code;
- }
-
- public void setCode(String code) {
- this.code = code;
- }
-
- public Integer getNumberScan() {
- return numberScan;
- }
-
- public void setNumberScan(Integer numberScan) {
- this.numberScan = numberScan;
- }
-
- public TBCodeStatusEnum getStatus() {
- return status;
- }
-
- public void setStatus(TBCodeStatusEnum status) {
- this.status = status;
- }
-
- public Instant getCreatedDate() {
- return createdDate;
- }
-
- public void setCreatedDate(Instant createdDate) {
- this.createdDate = createdDate;
- }
-
- public Instant getModifiedDate() {
- return modifiedDate;
- }
-
- public void setModifiedDate(Instant modifiedDate) {
- this.modifiedDate = modifiedDate;
- }
-
- public Instant getDeletedDate() {
- return deletedDate;
- }
-
- public void setDeletedDate(Instant deletedDate) {
- this.deletedDate = deletedDate;
- }
-
- public Long getCreatedById() {
- return createdById;
- }
-
- public void setCreatedById(Long createdById) {
- this.createdById = createdById;
- }
-
- public Long getModifiedById() {
- return modifiedById;
- }
-
- public void setModifiedById(Long modifiedById) {
- this.modifiedById = modifiedById;
- }
-
- public Long getDeletedById() {
- return deletedById;
- }
-
- public void setDeletedById(Long deletedById) {
- this.deletedById = deletedById;
- }
- }
|