|
@@ -8,6 +8,9 @@ import java.util.List;
|
|
|
|
|
|
public class StudentPaymentOrderQueryInfo extends QueryInfo {
|
|
|
|
|
|
+ @ApiModelProperty("订单编号")
|
|
|
+ private Long paymentOrderId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "开始时间",required = false)
|
|
|
private String orderStartDate;
|
|
|
|
|
@@ -69,6 +72,14 @@ public class StudentPaymentOrderQueryInfo extends QueryInfo {
|
|
|
|
|
|
private String oldOrganId;
|
|
|
|
|
|
+ public Long getPaymentOrderId() {
|
|
|
+ return paymentOrderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaymentOrderId(Long paymentOrderId) {
|
|
|
+ this.paymentOrderId = paymentOrderId;
|
|
|
+ }
|
|
|
+
|
|
|
public boolean getIsExport() {
|
|
|
return isExport;
|
|
|
}
|