Commit 7b2ec45f6f4d3965d255d73a2a9d4f29bf175b2a

Authored by jiangchengyong
1 parent 798a8b49

del logistics

Showing 16 changed files with 0 additions and 498 deletions
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/AddLogisticsLineReq.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.BaseReq;  
6 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.LineInfo;  
7 -  
8 -/**  
9 - * <B>Description</B> 路线管理-添加路线 <br />  
10 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
11 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
12 - * <B>Company</B> 地利集团  
13 - * @author wujiaqiang  
14 - */  
15 -public class AddLogisticsLineReq extends BaseReq {  
16 -  
17 - /**  
18 - * 店铺id  
19 - */  
20 - private Long shopId;  
21 -  
22 - /**  
23 - * 始发地  
24 - */  
25 - private LineInfo from;  
26 -  
27 - /**  
28 - * 目的地  
29 - */  
30 - private List<LineInfo> to;  
31 -  
32 - public Long getShopId() {  
33 - return shopId;  
34 - }  
35 -  
36 - public void setShopId(Long shopId) {  
37 - this.shopId = shopId;  
38 - }  
39 -  
40 - public LineInfo getFrom() {  
41 - return from;  
42 - }  
43 -  
44 - public void setFrom(LineInfo from) {  
45 - this.from = from;  
46 - }  
47 -  
48 - public List<LineInfo> getTo() {  
49 - return to;  
50 - }  
51 -  
52 - public void setTo(List<LineInfo> to) {  
53 - this.to = to;  
54 - }  
55 -  
56 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/AddLogisticsLineResp.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 AddLogisticsLineResp extends BaseResp {  
13 -  
14 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/AddLogisticsVehicleReq.java deleted 100644 → 0
1 -package com.diligrp.mobsite.getway.domain.protocol.shop;  
2 -  
3 -import com.diligrp.mobsite.getway.domain.protocol.BaseReq;  
4 -import com.diligrp.mobsite.getway.domain.protocol.shop.model.VehicleInfo;  
5 -  
6 -/**  
7 - * <B>Description</B> 车辆管理-添加车辆 <br />  
8 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
9 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
10 - * <B>Company</B> 地利集团  
11 - * @author wujiaqiang  
12 - */  
13 -public class AddLogisticsVehicleReq extends BaseReq {  
14 -  
15 - /**  
16 - * 店铺id  
17 - */  
18 - private Long shopId;  
19 -  
20 - /**  
21 - * 车牌号  
22 - * */  
23 - private String plateNumber;  
24 -  
25 - /**  
26 - * 车型ID  
27 - * */  
28 - private Long modelId;  
29 -  
30 - /**  
31 - * 车型名称  
32 - * */  
33 - private String modelName;  
34 -  
35 - /**  
36 - * 车长  
37 - * */  
38 - private Float length;  
39 -  
40 - /**  
41 - * 载重量  
42 - */  
43 - private Float carryWeight;  
44 -  
45 - /**  
46 - * 行驶证号  
47 - */  
48 - private String vehicleLicenseNumber;  
49 -  
50 - /**  
51 - * 驾驶证号  
52 - */  
53 - private String drivingLicenseNumber;  
54 -  
55 -  
56 - public Long getShopId() {  
57 - return shopId;  
58 - }  
59 -  
60 - public void setShopId(Long shopId) {  
61 - this.shopId = shopId;  
62 - }  
63 -  
64 - public String getPlateNumber() {  
65 - return plateNumber;  
66 - }  
67 -  
68 - public void setPlateNumber(String plateNumber) {  
69 - this.plateNumber = plateNumber;  
70 - }  
71 -  
72 - public Long getModelId() {  
73 - return modelId;  
74 - }  
75 -  
76 - public void setModelId(Long modelId) {  
77 - this.modelId = modelId;  
78 - }  
79 -  
80 - public String getModelName() {  
81 - return modelName;  
82 - }  
83 -  
84 - public void setModelName(String modelName) {  
85 - this.modelName = modelName;  
86 - }  
87 -  
88 - public Float getLength() {  
89 - return length;  
90 - }  
91 -  
92 - public void setLength(Float length) {  
93 - this.length = length;  
94 - }  
95 -  
96 - public Float getCarryWeight() {  
97 - return carryWeight;  
98 - }  
99 -  
100 - public void setCarryWeight(Float carryWeight) {  
101 - this.carryWeight = carryWeight;  
102 - }  
103 -  
104 - public String getVehicleLicenseNumber() {  
105 - return vehicleLicenseNumber;  
106 - }  
107 -  
108 - public void setVehicleLicenseNumber(String vehicleLicenseNumber) {  
109 - this.vehicleLicenseNumber = vehicleLicenseNumber;  
110 - }  
111 -  
112 - public String getDrivingLicenseNumber() {  
113 - return drivingLicenseNumber;  
114 - }  
115 -  
116 - public void setDrivingLicenseNumber(String drivingLicenseNumber) {  
117 - this.drivingLicenseNumber = drivingLicenseNumber;  
118 - }  
119 -  
120 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/AddLogisticsVehicleResp.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 AddLogisticsVehicleResp extends BaseResp {  
13 -  
14 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/CancelTopLogisticsLineReq.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 CancelTopLogisticsLineReq extends BaseReq {  
13 -  
14 - /**  
15 - * 线路id  
16 - */  
17 - private Long id;  
18 -  
19 - public Long getId() {  
20 - return id;  
21 - }  
22 -  
23 - public void setId(Long id) {  
24 - this.id = id;  
25 - }  
26 -  
27 -  
28 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/CancelTopLogisticsLineResp.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 CancelTopLogisticsLineResp extends BaseResp {  
13 -  
14 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/CountLogisticsLineReq.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 CountLogisticsLineReq 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/CountLogisticsLineResp.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 CountLogisticsLineResp extends BaseResp {  
13 -  
14 - private Integer lineCount;  
15 -  
16 - public Integer getLineCount() {  
17 - return lineCount;  
18 - }  
19 -  
20 - public void setLineCount(Integer lineCount) {  
21 - this.lineCount = lineCount;  
22 - }  
23 -  
24 -  
25 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/CountLogisticsLineVehicleReq.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 CountLogisticsLineVehicleReq 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/CountLogisticsLineVehicleResp.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 CountLogisticsLineVehicleResp extends BaseResp {  
13 -  
14 - private Integer lineCount;  
15 -  
16 - private Integer vehicleCount;  
17 -  
18 - public Integer getLineCount() {  
19 - return lineCount;  
20 - }  
21 -  
22 - public void setLineCount(Integer lineCount) {  
23 - this.lineCount = lineCount;  
24 - }  
25 -  
26 - public Integer getVehicleCount() {  
27 - return vehicleCount;  
28 - }  
29 -  
30 - public void setVehicleCount(Integer vehicleCount) {  
31 - this.vehicleCount = vehicleCount;  
32 - }  
33 -  
34 -  
35 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/CountLogisticsVehicleReq.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 CountLogisticsVehicleReq 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/CountLogisticsVehicleResp.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 CountLogisticsVehicleResp extends BaseResp {  
13 -  
14 - private Integer vehicleCount;  
15 -  
16 - public Integer getVehicleCount() {  
17 - return vehicleCount;  
18 - }  
19 -  
20 - public void setVehicleCount(Integer vehicleCount) {  
21 - this.vehicleCount = vehicleCount;  
22 - }  
23 -  
24 -  
25 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/DeleteLogisticsLineReq.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.BaseReq;  
6 -  
7 -/**  
8 - * <B>Description</B> 路线管理-删除路线 <br />  
9 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
10 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
11 - * <B>Company</B> 地利集团  
12 - * @author wujiaqiang  
13 - */  
14 -public class DeleteLogisticsLineReq extends BaseReq {  
15 -  
16 - /**  
17 - * 路线id  
18 - */  
19 - private List<Long> ids;  
20 -  
21 - public List<Long> getIds() {  
22 - return ids;  
23 - }  
24 -  
25 - public void setIds(List<Long> ids) {  
26 - this.ids = ids;  
27 - }  
28 -  
29 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/DeleteLogisticsLineResp.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 DeleteLogisticsLineResp extends BaseResp {  
13 -  
14 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/DeleteLogisticsVehicleReq.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.BaseReq;  
6 -  
7 -/**  
8 - * <B>Description</B> 车辆管理-删除车辆 <br />  
9 - * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />  
10 - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />  
11 - * <B>Company</B> 地利集团  
12 - * @author wujiaqiang  
13 - */  
14 -public class DeleteLogisticsVehicleReq extends BaseReq {  
15 -  
16 - /**  
17 - * 车辆id  
18 - */  
19 - private List<Long> ids;  
20 -  
21 - public List<Long> getIds() {  
22 - return ids;  
23 - }  
24 -  
25 - public void setIds(List<Long> ids) {  
26 - this.ids = ids;  
27 - }  
28 -  
29 -}  
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/DeleteLogisticsVehicleResp.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 DeleteLogisticsVehicleResp extends BaseResp {  
13 -  
14 -}