|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.community.pocket.entity.vo.android; |
|
|
|
package com.community.pocket.entity.vo.android; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.community.pocket.entity.po.android.Garbage; |
|
|
|
import com.community.pocket.entity.vo.Response; |
|
|
|
import com.community.pocket.entity.vo.Response; |
|
|
|
import com.community.pocket.entity.vo.Result; |
|
|
|
import com.community.pocket.entity.vo.Result; |
|
|
|
|
|
|
|
|
|
|
@ -9,17 +10,17 @@ import java.util.List; |
|
|
|
* 垃圾分类信息 |
|
|
|
* 垃圾分类信息 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public class GarbageSortingResponse extends Response<GarbageSortingResponse.Msg> { |
|
|
|
public class GarbageSortingResponse extends Response<GarbageSortingResponse.Msg> { |
|
|
|
private List<GarbageVo> garbageSortings; |
|
|
|
private List<Garbage> garbageSortings; |
|
|
|
|
|
|
|
|
|
|
|
public GarbageSortingResponse(Result result, Msg message, Object... args) { |
|
|
|
public GarbageSortingResponse(Result result, Msg message, Object... args) { |
|
|
|
super(result, message, args); |
|
|
|
super(result, message, args); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public List<GarbageVo> getGarbageSortings() { |
|
|
|
public List<Garbage> getGarbageSortings() { |
|
|
|
return garbageSortings; |
|
|
|
return garbageSortings; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setGarbageSortings(List<GarbageVo> garbageSortings) { |
|
|
|
public void setGarbageSortings(List<Garbage> garbageSortings) { |
|
|
|
this.garbageSortings = garbageSortings; |
|
|
|
this.garbageSortings = garbageSortings; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|