bd025cc7bced5213fad14c2c97dc98a1842bad2b.svn-base 645 B

1234567891011121314151617181920212223242526
  1. package cn.com.goldenwater.dcproj.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class WagaPblm {
  4. @ApiModelProperty("序号,格式为数字,多个数字用逗号分隔,区间数据用‘-’,'到','至'如0-10")
  5. private String sn;
  6. @ApiModelProperty("附件序号如附件1为1,附件2为2,多个附件用逗号分隔")
  7. private String attach;
  8. public String getSn() {
  9. return sn;
  10. }
  11. public void setSn(String sn) {
  12. this.sn = sn;
  13. }
  14. public String getAttach() {
  15. return attach;
  16. }
  17. public void setAttach(String attach) {
  18. this.attach = attach;
  19. }
  20. }