chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java
@@ -27,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"; //免费车
@@ -35,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"; //租客车
@@ -120,7 +120,11 @@
    private String paId;
    private Object[] otherItem;
    private List<OwnerCarAttrDto> ownerCarAttrDto;
    private String roadName;
    public String getCarColor() {
        return carColor;
@@ -601,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;
    }
}