Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

110 rindas
2.1KB

  1. package vn.azteam.tpf.service.dto;
  2. import vn.azteam.tpf.domain.TBCodeStatusEnum;
  3. import java.io.Serializable;
  4. import java.time.Instant;
  5. public class TBCodeDetailsDTO implements Serializable {
  6. private Long id;
  7. private String code;
  8. private Integer numberScan;
  9. private TBCodeStatusEnum status;
  10. private Instant createdDate;
  11. private Instant modifiedDate;
  12. private Instant deletedDate;
  13. private Long createdById;
  14. private Long modifiedById;
  15. private Long deletedById;
  16. public Long getId() {
  17. return id;
  18. }
  19. public void setId(Long id) {
  20. this.id = id;
  21. }
  22. public String getCode() {
  23. return code;
  24. }
  25. public void setCode(String code) {
  26. this.code = code;
  27. }
  28. public Integer getNumberScan() {
  29. return numberScan;
  30. }
  31. public void setNumberScan(Integer numberScan) {
  32. this.numberScan = numberScan;
  33. }
  34. public TBCodeStatusEnum getStatus() {
  35. return status;
  36. }
  37. public void setStatus(TBCodeStatusEnum status) {
  38. this.status = status;
  39. }
  40. public Instant getCreatedDate() {
  41. return createdDate;
  42. }
  43. public void setCreatedDate(Instant createdDate) {
  44. this.createdDate = createdDate;
  45. }
  46. public Instant getModifiedDate() {
  47. return modifiedDate;
  48. }
  49. public void setModifiedDate(Instant modifiedDate) {
  50. this.modifiedDate = modifiedDate;
  51. }
  52. public Instant getDeletedDate() {
  53. return deletedDate;
  54. }
  55. public void setDeletedDate(Instant deletedDate) {
  56. this.deletedDate = deletedDate;
  57. }
  58. public Long getCreatedById() {
  59. return createdById;
  60. }
  61. public void setCreatedById(Long createdById) {
  62. this.createdById = createdById;
  63. }
  64. public Long getModifiedById() {
  65. return modifiedById;
  66. }
  67. public void setModifiedById(Long modifiedById) {
  68. this.modifiedById = modifiedById;
  69. }
  70. public Long getDeletedById() {
  71. return deletedById;
  72. }
  73. public void setDeletedById(Long deletedById) {
  74. this.deletedById = deletedById;
  75. }
  76. }