604a2f1d77c08551ff8cd678cf44b8ed4cb1ab5e.svn-base 660 B

12345678910111213141516171819202122232425262728
  1. package cn.com.goldenwater.dcproj.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. public class BisInspGrwBaseParam implements Serializable {
  5. @ApiModelProperty(value = "填录入人ID")
  6. private String checkPid;
  7. @ApiModelProperty(value = "填录入人name")
  8. private String checkPname;
  9. public String getCheckPid() {
  10. return checkPid;
  11. }
  12. public void setCheckPid(String checkPid) {
  13. this.checkPid = checkPid;
  14. }
  15. public String getCheckPname() {
  16. return checkPname;
  17. }
  18. public void setCheckPname(String checkPname) {
  19. this.checkPname = checkPname;
  20. }
  21. }