d2f892022ee70432bb7f008c4968ad9050ade527.svn-base 769 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * TacPawpBstocmSctnParam
  7. *
  8. * @author lune
  9. * @date 2019-6-19
  10. */
  11. public class TacPawpBstocmSctnParam extends PageParam implements Serializable {
  12. @ApiModelProperty("主键ID")
  13. private String sctnId;
  14. @ApiModelProperty("主键ID")
  15. private String tacId;
  16. public TacPawpBstocmSctnParam() {
  17. }
  18. public String getSctnId() {
  19. return sctnId;
  20. }
  21. public void setSctnId(String sctnId) {
  22. this.sctnId = sctnId;
  23. }
  24. public String getTacId() {
  25. return tacId;
  26. }
  27. public void setTacId(String tacId) {
  28. this.tacId = tacId;
  29. }
  30. }