UserAbnormalHandlerDto.java 713 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.qxgmat.dto.admin.request;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserAbnormal;
  4. @Dto(entity = UserAbnormal.class)
  5. public class UserAbnormalHandlerDto {
  6. private Integer id;
  7. private Integer isAlert;
  8. private Integer isIgnore;
  9. public Integer getId() {
  10. return id;
  11. }
  12. public void setId(Integer id) {
  13. this.id = id;
  14. }
  15. public Integer getIsAlert() {
  16. return isAlert;
  17. }
  18. public void setIsAlert(Integer isAlert) {
  19. this.isAlert = isAlert;
  20. }
  21. public Integer getIsIgnore() {
  22. return isIgnore;
  23. }
  24. public void setIsIgnore(Integer isIgnore) {
  25. this.isIgnore = isIgnore;
  26. }
  27. }