您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

120 行
2.2KB

  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 TBCodeDTO tbCode;
  8. private String code;
  9. private Integer numberScan;
  10. private TBCodeStatusEnum status;
  11. private Instant createdDate;
  12. private Instant modifiedDate;
  13. private Instant deletedDate;
  14. private Long createdById;
  15. private Long modifiedById;
  16. private Long deletedById;
  17. public Long getId() {
  18. return id;
  19. }
  20. public void setId(Long id) {
  21. this.id = id;
  22. }
  23. public TBCodeDTO getTbCode() {
  24. return tbCode;
  25. }
  26. public void setTbCode(TBCodeDTO tbCode) {
  27. this.tbCode = tbCode;
  28. }
  29. public String getCode() {
  30. return code;
  31. }
  32. public void setCode(String code) {
  33. this.code = code;
  34. }
  35. public Integer getNumberScan() {
  36. return numberScan;
  37. }
  38. public void setNumberScan(Integer numberScan) {
  39. this.numberScan = numberScan;
  40. }
  41. public TBCodeStatusEnum getStatus() {
  42. return status;
  43. }
  44. public void setStatus(TBCodeStatusEnum status) {
  45. this.status = status;
  46. }
  47. public Instant getCreatedDate() {
  48. return createdDate;
  49. }
  50. public void setCreatedDate(Instant createdDate) {
  51. this.createdDate = createdDate;
  52. }
  53. public Instant getModifiedDate() {
  54. return modifiedDate;
  55. }
  56. public void setModifiedDate(Instant modifiedDate) {
  57. this.modifiedDate = modifiedDate;
  58. }
  59. public Instant getDeletedDate() {
  60. return deletedDate;
  61. }
  62. public void setDeletedDate(Instant deletedDate) {
  63. this.deletedDate = deletedDate;
  64. }
  65. public Long getCreatedById() {
  66. return createdById;
  67. }
  68. public void setCreatedById(Long createdById) {
  69. this.createdById = createdById;
  70. }
  71. public Long getModifiedById() {
  72. return modifiedById;
  73. }
  74. public void setModifiedById(Long modifiedById) {
  75. this.modifiedById = modifiedById;
  76. }
  77. public Long getDeletedById() {
  78. return deletedById;
  79. }
  80. public void setDeletedById(Long deletedById) {
  81. this.deletedById = deletedById;
  82. }
  83. }