Commit dc74762a16dd38375e76f235fce848deb93da590

Authored by jiangchengyong
1 parent 7b2ec45f

del logistics

mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/FindLogisticsVehicleByModelIdReq.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 FindLogisticsVehicleByModelIdReq extends BaseReq {
13   -
14   - /**
15   - * 店铺id
16   - */
17   - private Long shopId;
18   -
19   - /**
20   - * 车型ID
21   - */
22   - private Long modelId;
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 getModelId() {
33   - return modelId;
34   - }
35   -
36   - public void setModelId(Long modelId) {
37   - this.modelId = modelId;
38   - }
39   -
40   -}
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/FindLogisticsVehicleByModelIdResp.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 FindLogisticsVehicleByModelIdResp extends BaseResp {
16   -
17   - /**
18   - * 车型下车辆列表
19   - */
20   - List<VehicleInfo> list;
21   -
22   - public List<VehicleInfo> getList() {
23   - return list;
24   - }
25   -
26   - public void setList(List<VehicleInfo> list) {
27   - this.list = list;
28   - }
29   -
30   -}
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/GetLogisticsLineReq.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 GetLogisticsLineReq 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/GetLogisticsLineResp.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.LineInfo;
5   -
6   -/**
7   - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />
8   - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
9   - * <B>Company</B> 地利集团
10   - * @createTime 2015年6月9日 下午1:53:00
11   - * @author wujiaqiang
12   - */
13   -public class GetLogisticsLineResp extends BaseResp {
14   -
15   - private LineInfo line;
16   -
17   - public LineInfo getLine() {
18   - return line;
19   - }
20   -
21   - public void setLine(LineInfo line) {
22   - this.line = line;
23   - }
24   -
25   -
26   -
27   -}
mobsite-getway-domain/src/main/java/com/diligrp/mobsite/getway/domain/protocol/shop/GetLogisticsVehicleReq.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 GetLogisticsVehicleReq 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/GetLogisticsVehicleResp.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.VehicleInfo;
5   -
6   -/**
7   - * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />
8   - * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
9   - * <B>Company</B> 地利集团
10   - * @createTime 2015年6月9日 下午1:53:00
11   - * @author wujiaqiang
12   - */
13   -public class GetLogisticsVehicleResp extends BaseResp {
14   -
15   - private VehicleInfo vehicle;
16   -
17   - public VehicleInfo getVehicle() {
18   - return vehicle;
19   - }
20   -
21   - public void setVehicle(VehicleInfo vehicle) {
22   - this.vehicle = vehicle;
23   - }
24   -
25   -
26   -}