12345678910111213141516171819202122232425262728293031323334353637 |
- package com.qxgmat.dto.admin.request;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.UserAbnormal;
- @Dto(entity = UserAbnormal.class)
- public class UserAbnormalHandlerDto {
- private Integer id;
- private Integer isAlert;
- private Integer isIgnore;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getIsAlert() {
- return isAlert;
- }
- public void setIsAlert(Integer isAlert) {
- this.isAlert = isAlert;
- }
- public Integer getIsIgnore() {
- return isIgnore;
- }
- public void setIsIgnore(Integer isIgnore) {
- this.isIgnore = isIgnore;
- }
- }
|