| | |
| | | package com.java110.dto.fee; |
| | | |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.RoomDto; |
| | | import com.java110.dto.owner.OwnerCarDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | |
| | | public static final String PAYER_OBJ_TYPE_RENTING = "9999";//房源ID |
| | | |
| | | public static final String FEE_FLAG_ONCE = "2006012"; |
| | | public static final String FEE_FLAG_CYCLE = "1003006"; |
| | | public static final String REDIS_PAY_OWE_FEE = "PAY_OWE_FEE_"; |
| | | |
| | | private String amount; |
| | |
| | | |
| | | private List<FeeAttrDto> feeAttrDtos; |
| | | |
| | | private List<RoomDto> cacheRooms; |
| | | //当前时间 |
| | | private Date nowDate; |
| | | |
| | | private List<OwnerCarDto> cacheOwnerCars; |
| | | //查询出的数量 |
| | | private int count; |
| | | |
| | | |
| | | public String getAmount() { |
| | |
| | | public void setEndTime(Date endTime) { |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | |
| | | public Date getArrearsEndTime() { |
| | | return arrearsEndTime; |
| | |
| | | this.ownerId = ownerId; |
| | | } |
| | | |
| | | public List<RoomDto> getCacheRooms() { |
| | | return cacheRooms; |
| | | public Date getNowDate() { |
| | | return nowDate; |
| | | } |
| | | |
| | | public void setCacheRooms(List<RoomDto> cacheRooms) { |
| | | this.cacheRooms = cacheRooms; |
| | | public void setNowDate(Date nowDate) { |
| | | this.nowDate = nowDate; |
| | | } |
| | | |
| | | public List<OwnerCarDto> getCacheOwnerCars() { |
| | | return cacheOwnerCars; |
| | | public int getCount() { |
| | | return count; |
| | | } |
| | | |
| | | public void setCacheOwnerCars(List<OwnerCarDto> cacheOwnerCars) { |
| | | this.cacheOwnerCars = cacheOwnerCars; |
| | | public void setCount(int count) { |
| | | this.count = count; |
| | | } |
| | | } |