| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | |
| | | public static final String PAYER_OBJ_TYPE_ROOM = "3333"; //房屋 6666 是车位 |
| | | public static final String PAYER_OBJ_TYPE_PARKING_SPACE = "6666";//是车位 |
| | | public static final String PAYER_OBJ_TYPE_CAR = "6666";//是车位 |
| | | public static final String PAYER_OBJ_TYPE_RENTING = "9999";//房源ID |
| | | |
| | | public static final String FEE_FLAG_ONCE = "2006012"; |
| | | public static final String REDIS_PAY_OWE_FEE = "PAY_OWE_FEE_"; |
| | | |
| | | private String amount; |
| | | private String incomeObjId; |
| | | private String incomeObjName; |
| | | private String feeTypeCd; |
| | | private Date startTime; |
| | | private Date endTime; |
| | |
| | | private Date importFeeEndTime; |
| | | |
| | | |
| | | private String curDegrees; |
| | | private String preDegrees; |
| | | |
| | | private Date preReadingTime; |
| | | private Date curReadingTime; |
| | | |
| | | private List<FeeAttrDto> feeAttrDtos; |
| | | |
| | | |
| | | public String getAmount() { |
| | |
| | | public void setImportFeeEndTime(Date importFeeEndTime) { |
| | | this.importFeeEndTime = importFeeEndTime; |
| | | } |
| | | |
| | | public String getCurDegrees() { |
| | | return curDegrees; |
| | | } |
| | | |
| | | public void setCurDegrees(String curDegrees) { |
| | | this.curDegrees = curDegrees; |
| | | } |
| | | |
| | | public String getPreDegrees() { |
| | | return preDegrees; |
| | | } |
| | | |
| | | public void setPreDegrees(String preDegrees) { |
| | | this.preDegrees = preDegrees; |
| | | } |
| | | |
| | | public Date getPreReadingTime() { |
| | | return preReadingTime; |
| | | } |
| | | |
| | | public void setPreReadingTime(Date preReadingTime) { |
| | | this.preReadingTime = preReadingTime; |
| | | } |
| | | |
| | | public Date getCurReadingTime() { |
| | | return curReadingTime; |
| | | } |
| | | |
| | | public void setCurReadingTime(Date curReadingTime) { |
| | | this.curReadingTime = curReadingTime; |
| | | } |
| | | |
| | | public List<FeeAttrDto> getFeeAttrDtos() { |
| | | return feeAttrDtos; |
| | | } |
| | | |
| | | public void setFeeAttrDtos(List<FeeAttrDto> feeAttrDtos) { |
| | | this.feeAttrDtos = feeAttrDtos; |
| | | } |
| | | |
| | | public String getIncomeObjName() { |
| | | return incomeObjName; |
| | | } |
| | | |
| | | public void setIncomeObjName(String incomeObjName) { |
| | | this.incomeObjName = incomeObjName; |
| | | } |
| | | } |