| 1234567891011121314151617181920212223242526 |
- package cn.com.goldenwater.dcproj.param;
- import io.swagger.annotations.ApiModelProperty;
- public class WagaPblm {
- @ApiModelProperty("序号,格式为数字,多个数字用逗号分隔,区间数据用‘-’,'到','至'如0-10")
- private String sn;
- @ApiModelProperty("附件序号如附件1为1,附件2为2,多个附件用逗号分隔")
- private String attach;
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- public String getAttach() {
- return attach;
- }
- public void setAttach(String attach) {
- this.attach = attach;
- }
- }
|