Files
jshERP/src/main/java/com/jsh/model/vo/materials/AccountHeadModel.java

226 lines
3.9 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsh.model.vo.materials;
import java.io.Serializable;
@SuppressWarnings("serial")
public class AccountHeadModel implements Serializable
{
private AccountHeadShowModel showModel = new AccountHeadShowModel();
/**======开始接受页面参数=================**/
private String Type;
private Long OrganId;
private Long HandsPersonId;
private Double ChangeAmount;
private Double TotalPrice;
private Long AccountId;
private String BillNo;
private String BillTime;
private String Remark;
private String BeginTime; //查询开始时间
private String EndTime; //查询结束时间
private String MonthTime; //查询月份
/**
* 分类ID
*/
private Long accountHeadID = 0l;
/**
* 分类IDs 批量操作使用
*/
private String accountHeadIDs = "";
/**
* 每页显示的个数
*/
private int pageSize = 10;
/**
* 当前页码
*/
private int pageNo = 1;
/**
* 用户IP用户记录操作日志
*/
private String clientIp = "";
public void setShowModel(AccountHeadShowModel showModel)
{
this.showModel = showModel;
}
public AccountHeadShowModel getShowModel()
{
return showModel;
}
public void setType(String type)
{
Type = type;
}
public String getType()
{
return Type;
}
public void setOrganId(Long organId)
{
OrganId = organId;
}
public Long getOrganId()
{
return OrganId;
}
public void setHandsPersonId(Long handsPersonId)
{
HandsPersonId = handsPersonId;
}
public Long getHandsPersonId()
{
return HandsPersonId;
}
public void setChangeAmount(Double changeAmount)
{
ChangeAmount = changeAmount;
}
public Double getChangeAmount()
{
return ChangeAmount;
}
public void setTotalPrice(Double totalPrice) {
TotalPrice = totalPrice;
}
public Double getTotalPrice() {
return TotalPrice;
}
public void setAccountId(Long accountId)
{
AccountId = accountId;
}
public Long getAccountId()
{
return AccountId;
}
public void setBillNo(String billNo)
{
BillNo = billNo;
}
public String getBillNo()
{
return BillNo;
}
public void setBillTime(String billTime)
{
BillTime = billTime;
}
public String getBillTime()
{
return BillTime;
}
public void setRemark(String remark)
{
Remark = remark;
}
public String getRemark()
{
return Remark;
}
public void setBeginTime(String beginTime)
{
BeginTime = beginTime;
}
public String getBeginTime()
{
return BeginTime;
}
public void setEndTime(String endTime)
{
EndTime = endTime;
}
public String getEndTime()
{
return EndTime;
}
public void setMonthTime(String monthTime)
{
MonthTime = monthTime;
}
public String getMonthTime()
{
return MonthTime;
}
public void setAccountHeadID(Long accountHeadID)
{
this.accountHeadID = accountHeadID;
}
public Long getAccountHeadID()
{
return accountHeadID;
}
public void setAccountHeadIDs(String accountHeadIDs)
{
this.accountHeadIDs = accountHeadIDs;
}
public String getAccountHeadIDs()
{
return accountHeadIDs;
}
public void setPageSize(int pageSize)
{
this.pageSize = pageSize;
}
public int getPageSize()
{
return pageSize;
}
public void setPageNo(int pageNo)
{
this.pageNo = pageNo;
}
public int getPageNo()
{
return pageNo;
}
public void setClientIp(String clientIp)
{
this.clientIp = clientIp;
}
public String getClientIp()
{
return clientIp;
}}