Commit ce323d7b21a53fd93b9c9c21cb488243f76ad466

Authored by jiangchengyong
1 parent dc74762a

del logistics

Showing 14 changed files with 0 additions and 531 deletions
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListByModelLogisticsVehicleReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -  
5 -/**  
6 - * <B>Description</B> 车辆管理-获取店铺车型列表 <br />  
7 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
8 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
9 - * <B>Company</B> 地利集团  
10 - * @author wujiaqiang  
11 - */  
12 -public class ListByModelLogisticsVehicleReq extends BaseReq {  
13 -  
14 - /**  
15 - * 店铺id  
16 - */  
17 - private Long shopId;  
18 -  
19 - public Long getShopId() {  
20 - return shopId;  
21 - }  
22 -  
23 - public void setShopId(Long shopId) {  
24 - this.shopId = shopId;  
25 - }  
26 -  
27 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListByModelLogisticsVehicleResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import java.util.List;  
4 -  
5 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
6 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.CarSumInfo;  
7 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.VehicleModelsInfo;  
8 -  
9 -/**  
10 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
11 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
12 - * <B>Company</B> 地利集团  
13 - * @createTime 2015年6月9日 下午1:53:00  
14 - * @author wujiaqiang  
15 - */  
16 -public class ListByModelLogisticsVehicleResp extends BaseResp {  
17 -  
18 - /**  
19 - * 店铺车型列表  
20 - */  
21 - List<CarSumInfo> list;  
22 -  
23 - public List<CarSumInfo> getList() {  
24 - return list;  
25 - }  
26 -  
27 - public void setList(List<CarSumInfo> list) {  
28 - this.list = list;  
29 - }  
30 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsLineMoreReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -  
5 -/**  
6 - * <B>Description</B> 路线管理-获取更多线路信息 <br />  
7 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
8 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
9 - * <B>Company</B> 地利集团  
10 - * @author wujiaqiang  
11 - */  
12 -public class ListLogisticsLineMoreReq extends BaseReq {  
13 -  
14 - /**  
15 - * 店铺id  
16 - */  
17 - private Long shopId;  
18 -  
19 - public Long getShopId() {  
20 - return shopId;  
21 - }  
22 -  
23 - public void setShopId(Long shopId) {  
24 - this.shopId = shopId;  
25 - }  
26 -  
27 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsLineMoreResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import java.util.List;  
4 -  
5 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
6 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.LineInfo;  
7 -  
8 -/**  
9 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
10 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
11 - * <B>Company</B> 地利集团  
12 - * @createTime 2015年6月9日 下午1:53:00  
13 - * @author wujiaqiang  
14 - */  
15 -public class ListLogisticsLineMoreResp extends BaseResp {  
16 -  
17 - /**  
18 - * 线路信息  
19 - */  
20 - private List<LineInfo> lines;  
21 -  
22 - /**  
23 - * 线路条数  
24 - */  
25 - private Integer lineCount;  
26 -  
27 - /**  
28 - * 线路包含的省份信息  
29 - */  
30 - private List<String> provinces;  
31 -  
32 - public List<LineInfo> getLines() {  
33 - return lines;  
34 - }  
35 -  
36 - public void setLines(List<LineInfo> lines) {  
37 - this.lines = lines;  
38 - }  
39 -  
40 - public Integer getLineCount() {  
41 - return lineCount;  
42 - }  
43 -  
44 - public void setLineCount(Integer lineCount) {  
45 - this.lineCount = lineCount;  
46 - }  
47 -  
48 - public List<String> getProvinces() {  
49 - return provinces;  
50 - }  
51 -  
52 - public void setProvinces(List<String> provinces) {  
53 - this.provinces = provinces;  
54 - }  
55 -  
56 -  
57 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsLineReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -  
5 -/**  
6 - * <B>Description</B> 路线管理-获取线路列表 <br />  
7 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
8 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
9 - * <B>Company</B> 地利集团  
10 - * @author wujiaqiang  
11 - */  
12 -public class ListLogisticsLineReq extends BaseReq {  
13 -  
14 - /**  
15 - * 店铺id  
16 - */  
17 - private Long shopId;  
18 -  
19 - public Long getShopId() {  
20 - return shopId;  
21 - }  
22 -  
23 - public void setShopId(Long shopId) {  
24 - this.shopId = shopId;  
25 - }  
26 -  
27 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsLineResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import java.util.List;  
4 -  
5 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
6 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.LineInfo;  
7 -  
8 -/**  
9 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
10 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
11 - * <B>Company</B> 地利集团  
12 - * @createTime 2015年6月9日 下午1:53:00  
13 - * @author wujiaqiang  
14 - */  
15 -public class ListLogisticsLineResp extends BaseResp {  
16 -  
17 - /**  
18 - * 线路列表  
19 - */  
20 - private List<LineInfo> lines;  
21 -  
22 - /**  
23 - * top线路  
24 - */  
25 - private List<LineInfo> topLines;  
26 -  
27 - public List<LineInfo> getLines() {  
28 - return lines;  
29 - }  
30 -  
31 - public void setLines(List<LineInfo> lines) {  
32 - this.lines = lines;  
33 - }  
34 -  
35 - public List<LineInfo> getTopLines() {  
36 - return topLines;  
37 - }  
38 -  
39 - public void setTopLines(List<LineInfo> topLines) {  
40 - this.topLines = topLines;  
41 - }  
42 -  
43 -  
44 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsVehicleModelsReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -  
5 -/**  
6 - * <B>Description</B> 车辆管理-获取车型列表 <br />  
7 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
8 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
9 - * <B>Company</B> 地利集团  
10 - * @author wujiaqiang  
11 - */  
12 -public class ListLogisticsVehicleModelsReq extends BaseReq {  
13 -  
14 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsVehicleModelsResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import java.util.List;  
4 -  
5 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
6 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.VehicleModelsInfo;  
7 -  
8 -/**  
9 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
10 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
11 - * <B>Company</B> 地利集团  
12 - * @createTime 2015年6月9日 下午1:53:00  
13 - * @author wujiaqiang  
14 - */  
15 -public class ListLogisticsVehicleModelsResp extends BaseResp {  
16 -  
17 - /**  
18 - * 车型列表  
19 - */  
20 - List<VehicleModelsInfo> models;  
21 -  
22 - public List<VehicleModelsInfo> getModels() {  
23 - return models;  
24 - }  
25 -  
26 - public void setModels(List<VehicleModelsInfo> models) {  
27 - this.models = models;  
28 - }  
29 -  
30 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsVehicleReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -  
5 -/**  
6 - * <B>Description</B> 车辆管理-获取车辆列表 <br />  
7 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
8 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
9 - * <B>Company</B> 地利集团  
10 - * @author wujiaqiang  
11 - */  
12 -public class ListLogisticsVehicleReq extends BaseReq {  
13 -  
14 - /**  
15 - * 店铺id  
16 - */  
17 - private Long shopId;  
18 -  
19 - public Long getShopId() {  
20 - return shopId;  
21 - }  
22 -  
23 - public void setShopId(Long shopId) {  
24 - this.shopId = shopId;  
25 - }  
26 -  
27 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ListLogisticsVehicleResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import java.util.List;  
4 -  
5 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
6 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.VehicleInfo;  
7 -  
8 -/**  
9 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
10 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
11 - * <B>Company</B> 地利集团  
12 - * @createTime 2015年6月9日 下午1:53:00  
13 - * @author wujiaqiang  
14 - */  
15 -public class ListLogisticsVehicleResp extends BaseResp {  
16 -  
17 - private List<VehicleInfo> vehicles;  
18 -  
19 - public List<VehicleInfo> getVehicles() {  
20 - return vehicles;  
21 - }  
22 -  
23 - public void setVehicles(List<VehicleInfo> vehicles) {  
24 - this.vehicles = vehicles;  
25 - }  
26 -  
27 -  
28 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/LogisticsShopMainPageResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
4 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.ContactUserInfo;  
5 -  
6 -/**  
7 - * <B>查询商品详情resp</B> <br />  
8 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
9 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
10 - * <B>Company</B> 地利集团  
11 - * @createTime 2015年6月9日 下午1:53:00  
12 - * @author duanyugen  
13 - */  
14 -public class LogisticsShopMainPageResp extends BaseResp {  
15 -  
16 - /**  
17 - * 物流店铺详情  
18 - */  
19 - private ShopLogisticsDetail shop;  
20 -  
21 - /**  
22 - * 联系人  
23 - */  
24 - private ContactUserInfo contact;  
25 -  
26 - /**  
27 - * 店铺描述  
28 - * */  
29 - private String desc;  
30 -  
31 - public ShopLogisticsDetail getShop() {  
32 - return shop;  
33 - }  
34 -  
35 - public void setShop(ShopLogisticsDetail shop) {  
36 - this.shop = shop;  
37 - }  
38 -  
39 - public ContactUserInfo getContact() {  
40 - return contact;  
41 - }  
42 -  
43 - public void setContact(ContactUserInfo contact) {  
44 - this.contact = contact;  
45 - }  
46 -  
47 - public String getDesc() {  
48 - return desc;  
49 - }  
50 -  
51 - public void setDesc(String desc) {  
52 - this.desc = desc;  
53 - }  
54 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/ShopLogisticsDetail.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.CarSumInfo;  
4 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.LineInfo;  
5 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.ShopNewIntroduction;  
6 -  
7 -import java.util.List;  
8 -  
9 -/**  
10 - * Created by david on 2015/7/27.  
11 - */  
12 -public class ShopLogisticsDetail extends ShopNewIntroduction {  
13 -  
14 - /**  
15 - * 车辆信息  
16 - * */  
17 - private List<CarSumInfo> carSumInfos;  
18 -  
19 - /**  
20 - * 运输路线列表  
21 - * */  
22 - private List<LineInfo> transferLines;  
23 - /**  
24 - * 服务类型  
25 - */  
26 - private List<Integer> buyOnOtherService;  
27 - /**  
28 - * 车辆数量  
29 - */  
30 - private Integer vehicleNum;  
31 - /**  
32 - * 综合评论  
33 - */  
34 - private String commentScore;  
35 - /**  
36 - * 物流代验货  
37 - */  
38 - private Integer logisticsSupportCheck;  
39 - /**  
40 - * 物流代集货  
41 - */  
42 - private Integer logisticsSupportCollection;  
43 - /**  
44 - * 物流店铺类型  
45 - */  
46 - private Long logisticsShopType;  
47 -  
48 - public List<CarSumInfo> getCarSumInfos() {  
49 - return carSumInfos;  
50 - }  
51 -  
52 - public void setCarSumInfos(List<CarSumInfo> carSumInfos) {  
53 - this.carSumInfos = carSumInfos;  
54 - }  
55 -  
56 - public List<LineInfo> getTransferLines() {  
57 - return transferLines;  
58 - }  
59 -  
60 - public void setTransferLines(List<LineInfo> transferLines) {  
61 - this.transferLines = transferLines;  
62 - }  
63 -  
64 - public List<Integer> getBuyOnOtherService() {  
65 - return buyOnOtherService;  
66 - }  
67 -  
68 - public void setBuyOnOtherService(List<Integer> buyOnOtherService) {  
69 - this.buyOnOtherService = buyOnOtherService;  
70 - }  
71 -  
72 - public Integer getVehicleNum() {  
73 - return vehicleNum;  
74 - }  
75 -  
76 - public void setVehicleNum(Integer vehicleNum) {  
77 - this.vehicleNum = vehicleNum;  
78 - }  
79 -  
80 - public String getCommentScore() {  
81 - return commentScore;  
82 - }  
83 -  
84 - public void setCommentScore(String commentScore) {  
85 - this.commentScore = commentScore;  
86 - }  
87 -  
88 - public Integer getLogisticsSupportCheck() {  
89 - return logisticsSupportCheck;  
90 - }  
91 -  
92 - public void setLogisticsSupportCheck(Integer logisticsSupportCheck) {  
93 - this.logisticsSupportCheck = logisticsSupportCheck;  
94 - }  
95 -  
96 - public Integer getLogisticsSupportCollection() {  
97 - return logisticsSupportCollection;  
98 - }  
99 -  
100 - public void setLogisticsSupportCollection(Integer logisticsSupportCollection) {  
101 - this.logisticsSupportCollection = logisticsSupportCollection;  
102 - }  
103 -  
104 - public Long getLogisticsShopType() {  
105 - return logisticsShopType;  
106 - }  
107 -  
108 - public void setLogisticsShopType(Long logisticsShopType) {  
109 - this.logisticsShopType = logisticsShopType;  
110 - }  
111 -  
112 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/TopLogisticsLineReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -  
5 -/**  
6 - * <B>Description</B> 路线管理-置顶线路 <br />  
7 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
8 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
9 - * <B>Company</B> 地利集团  
10 - * @author wujiaqiang  
11 - */  
12 -public class TopLogisticsLineReq extends BaseReq {  
13 -  
14 - /**  
15 - * 店铺id  
16 - */  
17 - private Long shopId;  
18 -  
19 - /**  
20 - * 路线ID  
21 - */  
22 - private Long id;  
23 -  
24 - public Long getShopId() {  
25 - return shopId;  
26 - }  
27 -  
28 - public void setShopId(Long shopId) {  
29 - this.shopId = shopId;  
30 - }  
31 -  
32 - public Long getId() {  
33 - return id;  
34 - }  
35 -  
36 - public void setId(Long id) {  
37 - this.id = id;  
38 - }  
39 -  
40 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/TopLogisticsLineResp.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseResp;  
4 -  
5 -/**  
6 - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />  
7 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
8 - * <B>Company</B> 地利集团  
9 - * @createTime 2015年6月9日 下午1:53:00  
10 - * @author wujiaqiang  
11 - */  
12 -public class TopLogisticsLineResp extends BaseResp {  
13 -  
14 -}