85454f9c3a3ae66e85ab77cfe35c8a09a15288e9.svn-base 863 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package cn.com.goldenwater.dcproj.model;
  2. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * @author lhc
  7. * @date 2019/11/18 13:44
  8. */
  9. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  10. public class BisInspOffLineRet implements Serializable {
  11. // ID
  12. @ApiModelProperty(value = "regId", name = "regId")
  13. private String regId;
  14. // 对象ID
  15. @ApiModelProperty(value = "objId", name = "objId")
  16. private String objId;
  17. public BisInspOffLineRet() {
  18. }
  19. public String getRegId() {
  20. return regId;
  21. }
  22. public void setRegId(String regId) {
  23. this.regId = regId;
  24. }
  25. public String getObjId() {
  26. return objId;
  27. }
  28. public void setObjId(String objId) {
  29. this.objId = objId;
  30. }
  31. }