QcCasesEntryHospitalVO.java 659 B

1234567891011121314151617181920212223242526
  1. package com.diagbot.vo;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.diagbot.util.SysUserUtils;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. /**
  8. * @author wangfeng
  9. * @Description:
  10. * @date 2020-04-13 16:16
  11. */
  12. @Setter
  13. @Getter
  14. public class QcCasesEntryHospitalVO extends Page {
  15. @ApiModelProperty(hidden = true)
  16. private Long hospitalId = Long.valueOf(SysUserUtils.getCurrentHospitalID());
  17. private Long casesId;
  18. private String name;
  19. private Integer isReject;
  20. private String isPlacefile = "1";
  21. private Integer isUsed;
  22. private Integer ruleType;
  23. }