|
@@ -5,6 +5,9 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
public class CooperationRefundQueryInfo extends QueryInfo {
|
|
|
|
|
|
+ @ApiModelProperty(value = "合作单位编号",required = false)
|
|
|
+ private Integer cooperationId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "分部",required = false)
|
|
|
private String organId;
|
|
|
|
|
@@ -17,6 +20,14 @@ public class CooperationRefundQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "缴费结束时间",required = false)
|
|
|
private String refundEndDate;
|
|
|
|
|
|
+ public Integer getCooperationId() {
|
|
|
+ return cooperationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCooperationId(Integer cooperationId) {
|
|
|
+ this.cooperationId = cooperationId;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getRefundStatus() {
|
|
|
return refundStatus;
|
|
|
}
|