chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java
@@ -1,5 +1,6 @@
package com.java110.dto.owner;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.java110.dto.PageDto;
import java.io.Serializable;
@@ -26,7 +27,7 @@
    public static final String CAR_TYPE_CD_TEMP = "1003";
    // public static final String LEASE_TYPE_MONTH = "H"; // 月租车
    public static final String LEASE_TYPE_MONTH = "H"; // 月租车
    // public static final String LEASE_TYPE_SALE = "S"; // 出售车
    // public static final String LEASE_TYPE_INNER = "I"; //内部车
    // public static final String LEASE_TYPE_NO_MONEY = "NM"; //免费车
@@ -34,7 +35,7 @@
    public static final String LEASE_TYPE_TEMP = "T";//临时车
    public static final String LEASE_TYPE_STORE = "S"; // 商铺车
    public static final String LEASE_TYPE_STORE = "SP"; // 商铺车
    public static final String LEASE_TYPE_INNER = "I"; //业委会照顾车
    public static final String LEASE_TYPE_NO_MONEY = "NM"; //小业主产权车
    public static final String LEASE_TYPE_RESERVE = "R"; //租客车
@@ -70,8 +71,9 @@
    private String spaceSate;
    private String roomName;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date startTime;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date endTime;
    private String state;
    private String stateName;
@@ -118,7 +120,11 @@
    private String paId;
    private Object[] otherItem;
    private List<OwnerCarAttrDto> ownerCarAttrDto;
    private String roadName;
    public String getCarColor() {
        return carColor;
@@ -599,4 +605,20 @@
    public void setCommunityIds(String[] communityIds) {
        this.communityIds = communityIds;
    }
    public Object[] getOtherItem() {
        return otherItem;
    }
    public void setOtherItem(Object[] otherItem) {
        this.otherItem = otherItem;
    }
    public String getRoadName() {
        return roadName;
    }
    public void setRoadName(String roadName) {
        this.roadName = roadName;
    }
}