0674e80a29fb71f5d56c32f3b6fe9f51eb4e3932.svn-base 471 B

1234567891011121314151617181920212223242526
  1. package cn.com.goldenwater.dcproj.dto;
  2. /**
  3. * Created by jinshui on 2019/7/2.
  4. */
  5. public class ExcelInspLevelDto {
  6. private String id;
  7. private String disPlayLevel;
  8. public String getId() {
  9. return id;
  10. }
  11. public void setId(String id) {
  12. this.id = id;
  13. }
  14. public String getDisPlayLevel() {
  15. return disPlayLevel;
  16. }
  17. public void setDisPlayLevel(String disPlayLevel) {
  18. this.disPlayLevel = disPlayLevel;
  19. }
  20. }