35 lines
697 B
Java
35 lines
697 B
Java
|
|
package org.chenyon.bill;
|
||
|
|
|
||
|
|
import org.rcy.framework.api.entity.PageQueryRequest;
|
||
|
|
|
||
|
|
public class BillQueryCondition extends PageQueryRequest {
|
||
|
|
|
||
|
|
private String cusNo; //客商编码
|
||
|
|
private String year; //年份
|
||
|
|
private String billStatus; //账单状态
|
||
|
|
|
||
|
|
public String getCusNo() {
|
||
|
|
return cusNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCusNo(String cusNo) {
|
||
|
|
this.cusNo = cusNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getYear() {
|
||
|
|
return year;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setYear(String year) {
|
||
|
|
this.year = year;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getBillStatus() {
|
||
|
|
return billStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setBillStatus(String billStatus) {
|
||
|
|
this.billStatus = billStatus;
|
||
|
|
}
|
||
|
|
}
|