AssignedIdentityVO.java 486 B

12345678910111213141516171819202122232425
  1. package com.yihu.jw.restmodel;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. /**
  5. * Basic VO - 自定义主键类型基类
  6. * Created by progr1mmer on 2018/8/13.
  7. */
  8. public abstract class AssignedIdentityVO implements Serializable {
  9. @ApiModelProperty(value = "id", example = "iREOlyuyKfRBIGOHbBGJ" )
  10. protected String id;
  11. public String getId() {
  12. return id;
  13. }
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. }