Browse Source

1.增加数据库表结构。

2.增加nacos配置项
3.增加模板生成代码
test
pref_mail@163.com 2 years ago
parent
commit
27ec07c143
  1. 76
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/OrderLogEntity.java
  2. 101
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/StaorderPackagesEntity.java
  3. 181
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/StationOrderEntity.java
  4. 76
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/StationlinenumEntity.java
  5. 35
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/OrderLogVO.java
  6. 0
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/RequestLineNumberVo.java
  7. 2
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/RequestSecBaseVo.java
  8. 2
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/RequestVo.java
  9. 2
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/ResponseBaseVo.java
  10. 35
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/StaorderPackagesVO.java
  11. 35
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/StationOrderVO.java
  12. 35
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/StationlinenumVO.java
  13. 2
      blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/SystemSign.java
  14. 125
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/OrderLogController.java
  15. 125
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/StaorderPackagesController.java
  16. 125
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/StationOrderController.java
  17. 125
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/StationlinenumController.java
  18. 34
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/OrderLogDTO.java
  19. 34
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/StaorderPackagesDTO.java
  20. 34
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/StationOrderDTO.java
  21. 34
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/StationlinenumDTO.java
  22. 43
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/OrderLogMapper.java
  23. 25
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/OrderLogMapper.xml
  24. 43
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StaorderPackagesMapper.java
  25. 30
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StaorderPackagesMapper.xml
  26. 43
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationOrderMapper.java
  27. 46
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationOrderMapper.xml
  28. 43
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationlinenumMapper.java
  29. 25
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationlinenumMapper.xml
  30. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IOrderLogService.java
  31. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IStaorderPackagesService.java
  32. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IStationOrderService.java
  33. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IStationlinenumService.java
  34. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/OrderLogServiceImpl.java
  35. 7
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/OrderServiceImpl.java
  36. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/StaorderPackagesServiceImpl.java
  37. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/StationOrderServiceImpl.java
  38. 42
      blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/StationlinenumServiceImpl.java

76
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/OrderLogEntity.java

@ -0,0 +1,76 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import lombok.EqualsAndHashCode;
import org.springblade.core.mp.base.BaseEntity;
import org.springblade.core.tenant.mp.TenantEntity;
/**
* 诗尼曼接口日志 实体类
*
* @author BladeX
* @since 2023-03-28
*/
@Data
@TableName("snm_order_log")
@ApiModel(value = "OrderLog对象", description = "诗尼曼接口日志")
@EqualsAndHashCode(callSuper = true)
public class OrderLogEntity extends BaseEntity {
/**
* 请求参数
*/
@ApiModelProperty(value = "请求参数")
private String reqArgs;
/**
* 相应内容
*/
@ApiModelProperty(value = "相应内容")
private String resBody;
/**
* 创建人
*/
@ApiModelProperty(value = "创建人")
private String createdUser;
/**
* 创建时间
*/
@ApiModelProperty(value = "创建时间")
private Date createdTime;
/**
* 更新人
*/
@ApiModelProperty(value = "更新人")
private String updatedUser;
/**
* 更新时间
*/
@ApiModelProperty(value = "更新时间")
private Date updatedTime;
/**
* 创建部门
*/
@ApiModelProperty(value = "创建部门")
private Integer createdDept;
}

101
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/StaorderPackagesEntity.java

@ -0,0 +1,101 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import lombok.EqualsAndHashCode;
import org.springblade.core.mp.base.BaseEntity;
import org.springblade.core.tenant.mp.TenantEntity;
/**
* 寺尼曼运单 实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@TableName("snm_staorder_packages")
@ApiModel(value = "StaorderPackages对象", description = "寺尼曼运单")
@EqualsAndHashCode(callSuper = true)
public class StaorderPackagesEntity extends BaseEntity {
/**
* 订单id
*/
@ApiModelProperty(value = "订单id")
private String orderId;
/**
* 包件号
*/
@ApiModelProperty(value = "包件号")
private String packagenum;
/**
* 包件类型
*/
@ApiModelProperty(value = "包件类型")
private String lx;
/**
* 派车单号
*/
@ApiModelProperty(value = "派车单号")
private String tcWlb001;
/**
* 分包标识
*/
@ApiModelProperty(value = "分包标识")
private String tcWld011;
/**
* 客户订单号
*/
@ApiModelProperty(value = "客户订单号")
private String tcPoa014;
/**
* 客户订单号?
*/
@ApiModelProperty(value = "客户订单号?")
private String tcPoa046;
/**
* 创建人
*/
@ApiModelProperty(value = "创建人")
private String createdUser;
/**
* 创建时间
*/
@ApiModelProperty(value = "创建时间")
private Date createdTime;
/**
* 更新人
*/
@ApiModelProperty(value = "更新人")
private String updatedUser;
/**
* 更新时间
*/
@ApiModelProperty(value = "更新时间")
private Date updatedTime;
/**
* 创建部门
*/
@ApiModelProperty(value = "创建部门")
private Integer createdDept;
}

181
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/StationOrderEntity.java

@ -0,0 +1,181 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import lombok.EqualsAndHashCode;
import org.springblade.core.mp.base.BaseEntity;
import org.springblade.core.tenant.mp.TenantEntity;
/**
* 寺尼曼运单 实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@TableName("snm_station_order")
@ApiModel(value = "StationOrder对象", description = "寺尼曼运单")
@EqualsAndHashCode(callSuper = true)
public class StationOrderEntity extends BaseEntity {
/**
* 派车单
*/
@ApiModelProperty(value = "派车单")
private String tcWla001;
/**
* 产地
*/
@ApiModelProperty(value = "产地")
private String tcPoa061;
/**
* 线路编码
*/
@ApiModelProperty(value = "线路编码")
private String tcWla005;
/**
* 线路名称
*/
@ApiModelProperty(value = "线路名称")
private String tcCmb003;
/**
* 物流公司编码
*/
@ApiModelProperty(value = "物流公司编码")
private String tcWlb006;
/**
* 物流公司名称
*/
@ApiModelProperty(value = "物流公司名称")
private String tcBmb003;
/**
* 货运站编码
*/
@ApiModelProperty(value = "货运站编码")
private String tcWlb005;
/**
* 货运站编码名称
*/
@ApiModelProperty(value = "货运站编码名称")
private String tcDmb003;
/**
* 派车时间
*/
@ApiModelProperty(value = "派车时间")
private String tcWla002;
/**
* 客户单号
*/
@ApiModelProperty(value = "客户单号")
private String tcWlb008;
/**
* 系统单号
*/
@ApiModelProperty(value = "系统单号")
private String tcWlb007;
/**
* 出货总包数
*/
@ApiModelProperty(value = "出货总包数")
private Integer tcWlb009;
/**
* 柜体包数
*/
@ApiModelProperty(value = "柜体包数")
private Integer tcWlb019;
/**
* 五金包数
*/
@ApiModelProperty(value = "五金包数")
private Integer tcWlb020;
/**
* 背板包数
*/
@ApiModelProperty(value = "背板包数")
private Integer tcWlb021;
/**
* 背板2包数
*/
@ApiModelProperty(value = "背板2包数")
private Integer tcWlb035;
/**
* 门包数
*/
@ApiModelProperty(value = "门包数")
private Integer tcWlb022;
/**
* 特排包数
*/
@ApiModelProperty(value = "特排包数")
private Integer tcWlb033;
/**
* 标抽包数
*/
@ApiModelProperty(value = "标抽包数")
private Integer tcWlb034;
/**
* 分批出货类别
*/
@ApiModelProperty(value = "分批出货类别")
private String tcWlb037;
/**
* 门店名称
*/
@ApiModelProperty(value = "门店名称")
private String occ02;
/**
* 收货人
*/
@ApiModelProperty(value = "收货人")
private String tcWlb010;
/**
* 收货人手机号
*/
@ApiModelProperty(value = "收货人手机号")
private String tcWlb011;
/**
* 创建部门
*/
@ApiModelProperty(value = "创建部门")
private Integer createdDept;
/**
* 更新时间
*/
@ApiModelProperty(value = "更新时间")
private Date updatedTime;
/**
* 更新人
*/
@ApiModelProperty(value = "更新人")
private String updatedUser;
/**
* 创建时间
*/
@ApiModelProperty(value = "创建时间")
private Date createdTime;
/**
* 创建人
*/
@ApiModelProperty(value = "创建人")
private String createdUser;
}

76
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/entity/StationlinenumEntity.java

@ -0,0 +1,76 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import lombok.EqualsAndHashCode;
import org.springblade.core.mp.base.BaseEntity;
import org.springblade.core.tenant.mp.TenantEntity;
/**
* 诗尼曼线路 实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@TableName("snm_stationlinenum")
@ApiModel(value = "Stationlinenum对象", description = "诗尼曼线路")
@EqualsAndHashCode(callSuper = true)
public class StationlinenumEntity extends BaseEntity {
/**
* 线路编号
*/
@ApiModelProperty(value = "线路编号")
private String logisticsLineNumber;
/**
* 线路名称
*/
@ApiModelProperty(value = "线路名称")
private String logisticsLineName;
/**
* 创建人
*/
@ApiModelProperty(value = "创建人")
private String createdUser;
/**
* 创建时间
*/
@ApiModelProperty(value = "创建时间")
private Date createdTime;
/**
* 更新人
*/
@ApiModelProperty(value = "更新人")
private String updatedUser;
/**
* 更新时间
*/
@ApiModelProperty(value = "更新时间")
private Date updatedTime;
/**
* 创建部门
*/
@ApiModelProperty(value = "创建部门")
private Integer createdDept;
}

35
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/OrderLogVO.java

@ -0,0 +1,35 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.vo;
import com.logpm.factory.snm.entity.OrderLogEntity;
import org.springblade.core.tool.node.INode;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 诗尼曼接口日志 视图实体类
*
* @author BladeX
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class OrderLogVO extends OrderLogEntity {
private static final long serialVersionUID = 1L;
}

0
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/vo/RequestLineNumberVo.java → blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/RequestLineNumberVo.java

2
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/vo/RequestSecBaseVo.java → blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/RequestSecBaseVo.java

@ -1,7 +1,5 @@
package com.logpm.factory.snm.vo;
import com.logpm.factory.snm.base.vo.SystemSign;
public class RequestSecBaseVo {
/**
* 页码

2
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/base/vo/RequestVo.java → blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/RequestVo.java

@ -1,4 +1,4 @@
package com.logpm.factory.snm.base.vo;
package com.logpm.factory.snm.vo;
/**
* 诗尼曼请求对象

2
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/base/vo/ResponseBaseVo.java → blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/ResponseBaseVo.java

@ -1,4 +1,4 @@
package com.logpm.factory.snm.base.vo;
package com.logpm.factory.snm.vo;
/**
* 诗尼曼相应对象

35
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/StaorderPackagesVO.java

@ -0,0 +1,35 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.vo;
import com.logpm.factory.snm.entity.StaorderPackagesEntity;
import org.springblade.core.tool.node.INode;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 寺尼曼运单 视图实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class StaorderPackagesVO extends StaorderPackagesEntity {
private static final long serialVersionUID = 1L;
}

35
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/StationOrderVO.java

@ -0,0 +1,35 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.vo;
import com.logpm.factory.snm.entity.StationOrderEntity;
import org.springblade.core.tool.node.INode;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 寺尼曼运单 视图实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class StationOrderVO extends StationOrderEntity {
private static final long serialVersionUID = 1L;
}

35
blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/StationlinenumVO.java

@ -0,0 +1,35 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.vo;
import com.logpm.factory.snm.entity.StationlinenumEntity;
import org.springblade.core.tool.node.INode;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 诗尼曼线路 视图实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class StationlinenumVO extends StationlinenumEntity {
private static final long serialVersionUID = 1L;
}

2
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/base/vo/SystemSign.java → blade-service-api/blade-factory-api/src/main/java/com/logpm/factory/snm/vo/SystemSign.java

@ -1,4 +1,4 @@
package com.logpm.factory.snm.base.vo;
package com.logpm.factory.snm.vo;
/**
* 签名对象

125
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/OrderLogController.java

@ -0,0 +1,125 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import lombok.AllArgsConstructor;
import javax.validation.Valid;
import org.springblade.core.secure.BladeUser;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.factory.snm.entity.OrderLogEntity;
import com.logpm.factory.snm.vo.OrderLogVO;
import com.logpm.factory.snm.service.IOrderLogService;
import org.springblade.core.boot.ctrl.BladeController;
/**
* 诗尼曼接口日志 控制器
*
* @author BladeX
* @since 2023-03-28
*/
@RestController
@AllArgsConstructor
@RequestMapping("logpm-factory/orderLog")
@Api(value = "诗尼曼接口日志", tags = "诗尼曼接口日志接口")
public class OrderLogController extends BladeController {
private final IOrderLogService orderLogService;
/**
* 诗尼曼接口日志 详情
*/
@GetMapping("/detail")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入orderLog")
public R<OrderLogEntity> detail(OrderLogEntity orderLog) {
OrderLogEntity detail = orderLogService.getOne(Condition.getQueryWrapper(orderLog));
return R.data(detail);
}
/**
* 诗尼曼接口日志 分页
*/
@GetMapping("/list")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入orderLog")
public R<IPage<OrderLogEntity>> list(OrderLogEntity orderLog, Query query) {
IPage<OrderLogEntity> pages = orderLogService.page(Condition.getPage(query), Condition.getQueryWrapper(orderLog));
return R.data(pages);
}
/**
* 诗尼曼接口日志 自定义分页
*/
@GetMapping("/page")
@ApiOperationSupport(order = 3)
@ApiOperation(value = "分页", notes = "传入orderLog")
public R<IPage<OrderLogVO>> page(OrderLogVO orderLog, Query query) {
IPage<OrderLogVO> pages = orderLogService.selectOrderLogPage(Condition.getPage(query), orderLog);
return R.data(pages);
}
/**
* 诗尼曼接口日志 新增
*/
@PostMapping("/save")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "新增", notes = "传入orderLog")
public R save(@Valid @RequestBody OrderLogEntity orderLog) {
return R.status(orderLogService.save(orderLog));
}
/**
* 诗尼曼接口日志 修改
*/
@PostMapping("/update")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入orderLog")
public R update(@Valid @RequestBody OrderLogEntity orderLog) {
return R.status(orderLogService.updateById(orderLog));
}
/**
* 诗尼曼接口日志 新增或修改
*/
@PostMapping("/submit")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "新增或修改", notes = "传入orderLog")
public R submit(@Valid @RequestBody OrderLogEntity orderLog) {
return R.status(orderLogService.saveOrUpdate(orderLog));
}
/**
* 诗尼曼接口日志 删除
*/
@PostMapping("/remove")
@ApiOperationSupport(order = 7)
@ApiOperation(value = "逻辑删除", notes = "传入ids")
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
return R.status(orderLogService.deleteLogic(Func.toLongList(ids)));
}
}

125
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/StaorderPackagesController.java

@ -0,0 +1,125 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import lombok.AllArgsConstructor;
import javax.validation.Valid;
import org.springblade.core.secure.BladeUser;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.factory.snm.entity.StaorderPackagesEntity;
import com.logpm.factory.snm.vo.StaorderPackagesVO;
import com.logpm.factory.snm.service.IStaorderPackagesService;
import org.springblade.core.boot.ctrl.BladeController;
/**
* 寺尼曼运单 控制器
*
* @author pref
* @since 2023-03-28
*/
@RestController
@AllArgsConstructor
@RequestMapping("logpm-factory/staorderPackages")
@Api(value = "寺尼曼运单", tags = "寺尼曼运单接口")
public class StaorderPackagesController extends BladeController {
private final IStaorderPackagesService staorderPackagesService;
/**
* 寺尼曼运单 详情
*/
@GetMapping("/detail")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入staorderPackages")
public R<StaorderPackagesEntity> detail(StaorderPackagesEntity staorderPackages) {
StaorderPackagesEntity detail = staorderPackagesService.getOne(Condition.getQueryWrapper(staorderPackages));
return R.data(detail);
}
/**
* 寺尼曼运单 分页
*/
@GetMapping("/list")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入staorderPackages")
public R<IPage<StaorderPackagesEntity>> list(StaorderPackagesEntity staorderPackages, Query query) {
IPage<StaorderPackagesEntity> pages = staorderPackagesService.page(Condition.getPage(query), Condition.getQueryWrapper(staorderPackages));
return R.data(pages);
}
/**
* 寺尼曼运单 自定义分页
*/
@GetMapping("/page")
@ApiOperationSupport(order = 3)
@ApiOperation(value = "分页", notes = "传入staorderPackages")
public R<IPage<StaorderPackagesVO>> page(StaorderPackagesVO staorderPackages, Query query) {
IPage<StaorderPackagesVO> pages = staorderPackagesService.selectStaorderPackagesPage(Condition.getPage(query), staorderPackages);
return R.data(pages);
}
/**
* 寺尼曼运单 新增
*/
@PostMapping("/save")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "新增", notes = "传入staorderPackages")
public R save(@Valid @RequestBody StaorderPackagesEntity staorderPackages) {
return R.status(staorderPackagesService.save(staorderPackages));
}
/**
* 寺尼曼运单 修改
*/
@PostMapping("/update")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入staorderPackages")
public R update(@Valid @RequestBody StaorderPackagesEntity staorderPackages) {
return R.status(staorderPackagesService.updateById(staorderPackages));
}
/**
* 寺尼曼运单 新增或修改
*/
@PostMapping("/submit")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "新增或修改", notes = "传入staorderPackages")
public R submit(@Valid @RequestBody StaorderPackagesEntity staorderPackages) {
return R.status(staorderPackagesService.saveOrUpdate(staorderPackages));
}
/**
* 寺尼曼运单 删除
*/
@PostMapping("/remove")
@ApiOperationSupport(order = 7)
@ApiOperation(value = "逻辑删除", notes = "传入ids")
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
return R.status(staorderPackagesService.deleteLogic(Func.toLongList(ids)));
}
}

125
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/StationOrderController.java

@ -0,0 +1,125 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import lombok.AllArgsConstructor;
import javax.validation.Valid;
import org.springblade.core.secure.BladeUser;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.factory.snm.entity.StationOrderEntity;
import com.logpm.factory.snm.vo.StationOrderVO;
import com.logpm.factory.snm.service.IStationOrderService;
import org.springblade.core.boot.ctrl.BladeController;
/**
* 寺尼曼运单 控制器
*
* @author pref
* @since 2023-03-28
*/
@RestController
@AllArgsConstructor
@RequestMapping("logpm-factory/stationOrder")
@Api(value = "寺尼曼运单", tags = "寺尼曼运单接口")
public class StationOrderController extends BladeController {
private final IStationOrderService stationOrderService;
/**
* 寺尼曼运单 详情
*/
@GetMapping("/detail")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入stationOrder")
public R<StationOrderEntity> detail(StationOrderEntity stationOrder) {
StationOrderEntity detail = stationOrderService.getOne(Condition.getQueryWrapper(stationOrder));
return R.data(detail);
}
/**
* 寺尼曼运单 分页
*/
@GetMapping("/list")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入stationOrder")
public R<IPage<StationOrderEntity>> list(StationOrderEntity stationOrder, Query query) {
IPage<StationOrderEntity> pages = stationOrderService.page(Condition.getPage(query), Condition.getQueryWrapper(stationOrder));
return R.data(pages);
}
/**
* 寺尼曼运单 自定义分页
*/
@GetMapping("/page")
@ApiOperationSupport(order = 3)
@ApiOperation(value = "分页", notes = "传入stationOrder")
public R<IPage<StationOrderVO>> page(StationOrderVO stationOrder, Query query) {
IPage<StationOrderVO> pages = stationOrderService.selectStationOrderPage(Condition.getPage(query), stationOrder);
return R.data(pages);
}
/**
* 寺尼曼运单 新增
*/
@PostMapping("/save")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "新增", notes = "传入stationOrder")
public R save(@Valid @RequestBody StationOrderEntity stationOrder) {
return R.status(stationOrderService.save(stationOrder));
}
/**
* 寺尼曼运单 修改
*/
@PostMapping("/update")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入stationOrder")
public R update(@Valid @RequestBody StationOrderEntity stationOrder) {
return R.status(stationOrderService.updateById(stationOrder));
}
/**
* 寺尼曼运单 新增或修改
*/
@PostMapping("/submit")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "新增或修改", notes = "传入stationOrder")
public R submit(@Valid @RequestBody StationOrderEntity stationOrder) {
return R.status(stationOrderService.saveOrUpdate(stationOrder));
}
/**
* 寺尼曼运单 删除
*/
@PostMapping("/remove")
@ApiOperationSupport(order = 7)
@ApiOperation(value = "逻辑删除", notes = "传入ids")
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
return R.status(stationOrderService.deleteLogic(Func.toLongList(ids)));
}
}

125
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/controller/StationlinenumController.java

@ -0,0 +1,125 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import lombok.AllArgsConstructor;
import javax.validation.Valid;
import org.springblade.core.secure.BladeUser;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.factory.snm.entity.StationlinenumEntity;
import com.logpm.factory.snm.vo.StationlinenumVO;
import com.logpm.factory.snm.service.IStationlinenumService;
import org.springblade.core.boot.ctrl.BladeController;
/**
* 诗尼曼线路 控制器
*
* @author pref
* @since 2023-03-28
*/
@RestController
@AllArgsConstructor
@RequestMapping("logpm-factory/stationlinenum")
@Api(value = "诗尼曼线路", tags = "诗尼曼线路接口")
public class StationlinenumController extends BladeController {
private final IStationlinenumService stationlinenumService;
/**
* 诗尼曼线路 详情
*/
@GetMapping("/detail")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "详情", notes = "传入stationlinenum")
public R<StationlinenumEntity> detail(StationlinenumEntity stationlinenum) {
StationlinenumEntity detail = stationlinenumService.getOne(Condition.getQueryWrapper(stationlinenum));
return R.data(detail);
}
/**
* 诗尼曼线路 分页
*/
@GetMapping("/list")
@ApiOperationSupport(order = 2)
@ApiOperation(value = "分页", notes = "传入stationlinenum")
public R<IPage<StationlinenumEntity>> list(StationlinenumEntity stationlinenum, Query query) {
IPage<StationlinenumEntity> pages = stationlinenumService.page(Condition.getPage(query), Condition.getQueryWrapper(stationlinenum));
return R.data(pages);
}
/**
* 诗尼曼线路 自定义分页
*/
@GetMapping("/page")
@ApiOperationSupport(order = 3)
@ApiOperation(value = "分页", notes = "传入stationlinenum")
public R<IPage<StationlinenumVO>> page(StationlinenumVO stationlinenum, Query query) {
IPage<StationlinenumVO> pages = stationlinenumService.selectStationlinenumPage(Condition.getPage(query), stationlinenum);
return R.data(pages);
}
/**
* 诗尼曼线路 新增
*/
@PostMapping("/save")
@ApiOperationSupport(order = 4)
@ApiOperation(value = "新增", notes = "传入stationlinenum")
public R save(@Valid @RequestBody StationlinenumEntity stationlinenum) {
return R.status(stationlinenumService.save(stationlinenum));
}
/**
* 诗尼曼线路 修改
*/
@PostMapping("/update")
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入stationlinenum")
public R update(@Valid @RequestBody StationlinenumEntity stationlinenum) {
return R.status(stationlinenumService.updateById(stationlinenum));
}
/**
* 诗尼曼线路 新增或修改
*/
@PostMapping("/submit")
@ApiOperationSupport(order = 6)
@ApiOperation(value = "新增或修改", notes = "传入stationlinenum")
public R submit(@Valid @RequestBody StationlinenumEntity stationlinenum) {
return R.status(stationlinenumService.saveOrUpdate(stationlinenum));
}
/**
* 诗尼曼线路 删除
*/
@PostMapping("/remove")
@ApiOperationSupport(order = 7)
@ApiOperation(value = "逻辑删除", notes = "传入ids")
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
return R.status(stationlinenumService.deleteLogic(Func.toLongList(ids)));
}
}

34
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/OrderLogDTO.java

@ -0,0 +1,34 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.dto;
import com.logpm.factory.snm.entity.OrderLogEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 诗尼曼接口日志 数据传输对象实体类
*
* @author BladeX
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class OrderLogDTO extends OrderLogEntity {
private static final long serialVersionUID = 1L;
}

34
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/StaorderPackagesDTO.java

@ -0,0 +1,34 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.dto;
import com.logpm.factory.snm.entity.StaorderPackagesEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 寺尼曼运单 数据传输对象实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class StaorderPackagesDTO extends StaorderPackagesEntity {
private static final long serialVersionUID = 1L;
}

34
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/StationOrderDTO.java

@ -0,0 +1,34 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.dto;
import com.logpm.factory.snm.entity.StationOrderEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 寺尼曼运单 数据传输对象实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class StationOrderDTO extends StationOrderEntity {
private static final long serialVersionUID = 1L;
}

34
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/dto/StationlinenumDTO.java

@ -0,0 +1,34 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.dto;
import com.logpm.factory.snm.entity.StationlinenumEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 诗尼曼线路 数据传输对象实体类
*
* @author pref
* @since 2023-03-28
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class StationlinenumDTO extends StationlinenumEntity {
private static final long serialVersionUID = 1L;
}

43
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/OrderLogMapper.java

@ -0,0 +1,43 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.mapper;
import com.logpm.factory.snm.entity.OrderLogEntity;
import com.logpm.factory.snm.vo.OrderLogVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
/**
* 诗尼曼接口日志 Mapper 接口
*
* @author BladeX
* @since 2023-03-28
*/
public interface OrderLogMapper extends BaseMapper<OrderLogEntity> {
/**
* 自定义分页
*
* @param page
* @param orderLog
* @return
*/
List<OrderLogVO> selectOrderLogPage(IPage page, OrderLogVO orderLog);
}

25
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/OrderLogMapper.xml

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.logpm.factory.snm.mapper.OrderLogMapper">
<!-- 通用查询映射结果 -->
<resultMap id="orderLogResultMap" type="com.logpm.factory.snm.entity.OrderLogEntity">
<result column="id" property="id"/>
<result column="req_args" property="reqArgs"/>
<result column="res_body" property="resBody"/>
<result column="created_user" property="createdUser"/>
<result column="created_time" property="createdTime"/>
<result column="updated_user" property="updatedUser"/>
<result column="updated_time" property="updatedTime"/>
<result column="status" property="status"/>
<result column="is_deleted" property="isDeleted"/>
<result column="created_dept" property="createdDept"/>
</resultMap>
<select id="selectOrderLogPage" resultMap="orderLogResultMap">
select * from snm_order_log where is_deleted = 0
</select>
</mapper>

43
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StaorderPackagesMapper.java

@ -0,0 +1,43 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.mapper;
import com.logpm.factory.snm.entity.StaorderPackagesEntity;
import com.logpm.factory.snm.vo.StaorderPackagesVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
/**
* 寺尼曼运单 Mapper 接口
*
* @author pref
* @since 2023-03-28
*/
public interface StaorderPackagesMapper extends BaseMapper<StaorderPackagesEntity> {
/**
* 自定义分页
*
* @param page
* @param staorderPackages
* @return
*/
List<StaorderPackagesVO> selectStaorderPackagesPage(IPage page, StaorderPackagesVO staorderPackages);
}

30
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StaorderPackagesMapper.xml

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.logpm.factory.snm.mapper.StaorderPackagesMapper">
<!-- 通用查询映射结果 -->
<resultMap id="staorderPackagesResultMap" type="com.logpm.factory.snm.entity.StaorderPackagesEntity">
<result column="id" property="id"/>
<result column="order_id" property="orderId"/>
<result column="packagenum" property="packagenum"/>
<result column="lx" property="lx"/>
<result column="tc_wlb001" property="tcWlb001"/>
<result column="tc_wld011" property="tcWld011"/>
<result column="tc_poa014" property="tcPoa014"/>
<result column="tc_poa046" property="tcPoa046"/>
<result column="created_user" property="createdUser"/>
<result column="created_time" property="createdTime"/>
<result column="updated_user" property="updatedUser"/>
<result column="updated_time" property="updatedTime"/>
<result column="status" property="status"/>
<result column="created_dept" property="createdDept"/>
<result column="is_deleted" property="isDeleted"/>
</resultMap>
<select id="selectStaorderPackagesPage" resultMap="staorderPackagesResultMap">
select * from snm_staorder_packages where is_deleted = 0
</select>
</mapper>

43
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationOrderMapper.java

@ -0,0 +1,43 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.mapper;
import com.logpm.factory.snm.entity.StationOrderEntity;
import com.logpm.factory.snm.vo.StationOrderVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
/**
* 寺尼曼运单 Mapper 接口
*
* @author pref
* @since 2023-03-28
*/
public interface StationOrderMapper extends BaseMapper<StationOrderEntity> {
/**
* 自定义分页
*
* @param page
* @param stationOrder
* @return
*/
List<StationOrderVO> selectStationOrderPage(IPage page, StationOrderVO stationOrder);
}

46
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationOrderMapper.xml

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.logpm.factory.snm.mapper.StationOrderMapper">
<!-- 通用查询映射结果 -->
<resultMap id="stationOrderResultMap" type="com.logpm.factory.snm.entity.StationOrderEntity">
<result column="id" property="id"/>
<result column="tc_wla001" property="tcWla001"/>
<result column="tc_poa061" property="tcPoa061"/>
<result column="tc_wla005" property="tcWla005"/>
<result column="tc_cmb003" property="tcCmb003"/>
<result column="tc_wlb006" property="tcWlb006"/>
<result column="tc_bmb003" property="tcBmb003"/>
<result column="tc_wlb005" property="tcWlb005"/>
<result column="tc_dmb003" property="tcDmb003"/>
<result column="tc_wla002" property="tcWla002"/>
<result column="tc_wlb008" property="tcWlb008"/>
<result column="tc_wlb007" property="tcWlb007"/>
<result column="tc_wlb009" property="tcWlb009"/>
<result column="tc_wlb019" property="tcWlb019"/>
<result column="tc_wlb020" property="tcWlb020"/>
<result column="tc_wlb021" property="tcWlb021"/>
<result column="tc_wlb035" property="tcWlb035"/>
<result column="tc_wlb022" property="tcWlb022"/>
<result column="tc_wlb033" property="tcWlb033"/>
<result column="tc_wlb034" property="tcWlb034"/>
<result column="tc_wlb037" property="tcWlb037"/>
<result column="occ02" property="occ02"/>
<result column="tc_wlb010" property="tcWlb010"/>
<result column="tc_wlb011" property="tcWlb011"/>
<result column="status" property="status"/>
<result column="is_deleted" property="isDeleted"/>
<result column="created_dept" property="createdDept"/>
<result column="updated_time" property="updatedTime"/>
<result column="updated_user" property="updatedUser"/>
<result column="created_time" property="createdTime"/>
<result column="created_user" property="createdUser"/>
</resultMap>
<select id="selectStationOrderPage" resultMap="stationOrderResultMap">
select * from snm_station_order where is_deleted = 0
</select>
</mapper>

43
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationlinenumMapper.java

@ -0,0 +1,43 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.mapper;
import com.logpm.factory.snm.entity.StationlinenumEntity;
import com.logpm.factory.snm.vo.StationlinenumVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
/**
* 诗尼曼线路 Mapper 接口
*
* @author pref
* @since 2023-03-28
*/
public interface StationlinenumMapper extends BaseMapper<StationlinenumEntity> {
/**
* 自定义分页
*
* @param page
* @param stationlinenum
* @return
*/
List<StationlinenumVO> selectStationlinenumPage(IPage page, StationlinenumVO stationlinenum);
}

25
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/mapper/StationlinenumMapper.xml

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.logpm.factory.snm.mapper.StationlinenumMapper">
<!-- 通用查询映射结果 -->
<resultMap id="stationlinenumResultMap" type="com.logpm.factory.snm.entity.StationlinenumEntity">
<result column="id" property="id"/>
<result column="logistics_line_number" property="logisticsLineNumber"/>
<result column="logistics_line_name" property="logisticsLineName"/>
<result column="created_user" property="createdUser"/>
<result column="created_time" property="createdTime"/>
<result column="updated_user" property="updatedUser"/>
<result column="updated_time" property="updatedTime"/>
<result column="status" property="status"/>
<result column="is_deleted" property="isDeleted"/>
<result column="created_dept" property="createdDept"/>
</resultMap>
<select id="selectStationlinenumPage" resultMap="stationlinenumResultMap">
select * from snm_stationlinenum where is_deleted = 0
</select>
</mapper>

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IOrderLogService.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service;
import com.logpm.factory.snm.entity.OrderLogEntity;
import com.logpm.factory.snm.vo.OrderLogVO;
import org.springblade.core.mp.base.BaseService;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 诗尼曼接口日志 服务类
*
* @author BladeX
* @since 2023-03-28
*/
public interface IOrderLogService extends BaseService<OrderLogEntity> {
/**
* 自定义分页
*
* @param page
* @param orderLog
* @return
*/
IPage<OrderLogVO> selectOrderLogPage(IPage<OrderLogVO> page, OrderLogVO orderLog);
}

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IStaorderPackagesService.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service;
import com.logpm.factory.snm.entity.StaorderPackagesEntity;
import com.logpm.factory.snm.vo.StaorderPackagesVO;
import org.springblade.core.mp.base.BaseService;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 寺尼曼运单 服务类
*
* @author pref
* @since 2023-03-28
*/
public interface IStaorderPackagesService extends BaseService<StaorderPackagesEntity> {
/**
* 自定义分页
*
* @param page
* @param staorderPackages
* @return
*/
IPage<StaorderPackagesVO> selectStaorderPackagesPage(IPage<StaorderPackagesVO> page, StaorderPackagesVO staorderPackages);
}

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IStationOrderService.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service;
import com.logpm.factory.snm.entity.StationOrderEntity;
import com.logpm.factory.snm.vo.StationOrderVO;
import org.springblade.core.mp.base.BaseService;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 寺尼曼运单 服务类
*
* @author pref
* @since 2023-03-28
*/
public interface IStationOrderService extends BaseService<StationOrderEntity> {
/**
* 自定义分页
*
* @param page
* @param stationOrder
* @return
*/
IPage<StationOrderVO> selectStationOrderPage(IPage<StationOrderVO> page, StationOrderVO stationOrder);
}

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/IStationlinenumService.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service;
import com.logpm.factory.snm.entity.StationlinenumEntity;
import com.logpm.factory.snm.vo.StationlinenumVO;
import org.springblade.core.mp.base.BaseService;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 诗尼曼线路 服务类
*
* @author pref
* @since 2023-03-28
*/
public interface IStationlinenumService extends BaseService<StationlinenumEntity> {
/**
* 自定义分页
*
* @param page
* @param stationlinenum
* @return
*/
IPage<StationlinenumVO> selectStationlinenumPage(IPage<StationlinenumVO> page, StationlinenumVO stationlinenum);
}

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/OrderLogServiceImpl.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service.impl;
import com.logpm.factory.snm.entity.OrderLogEntity;
import com.logpm.factory.snm.vo.OrderLogVO;
import com.logpm.factory.snm.mapper.OrderLogMapper;
import com.logpm.factory.snm.service.IOrderLogService;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 诗尼曼接口日志 服务实现类
*
* @author BladeX
* @since 2023-03-28
*/
@Service
public class OrderLogServiceImpl extends BaseServiceImpl<OrderLogMapper, OrderLogEntity> implements IOrderLogService {
@Override
public IPage<OrderLogVO> selectOrderLogPage(IPage<OrderLogVO> page, OrderLogVO orderLog) {
return page.setRecords(baseMapper.selectOrderLogPage(page, orderLog));
}
}

7
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/OrderServiceImpl.java

@ -1,10 +1,9 @@
package com.logpm.factory.snm.service.impl;
import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.logpm.factory.snm.base.vo.RequestVo;
import com.logpm.factory.snm.base.vo.SystemSign;
import com.logpm.factory.snm.vo.RequestVo;
import com.logpm.factory.snm.vo.SystemSign;
import com.logpm.factory.snm.vo.RequestLineNumberVo;
import org.springframework.util.DigestUtils;
import org.springframework.util.ObjectUtils;
@ -12,8 +11,6 @@ import org.springframework.util.ObjectUtils;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Field;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
public class OrderServiceImpl {

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/StaorderPackagesServiceImpl.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service.impl;
import com.logpm.factory.snm.entity.StaorderPackagesEntity;
import com.logpm.factory.snm.vo.StaorderPackagesVO;
import com.logpm.factory.snm.mapper.StaorderPackagesMapper;
import com.logpm.factory.snm.service.IStaorderPackagesService;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 寺尼曼运单 服务实现类
*
* @author pref
* @since 2023-03-28
*/
@Service
public class StaorderPackagesServiceImpl extends BaseServiceImpl<StaorderPackagesMapper, StaorderPackagesEntity> implements IStaorderPackagesService {
@Override
public IPage<StaorderPackagesVO> selectStaorderPackagesPage(IPage<StaorderPackagesVO> page, StaorderPackagesVO staorderPackages) {
return page.setRecords(baseMapper.selectStaorderPackagesPage(page, staorderPackages));
}
}

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/StationOrderServiceImpl.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service.impl;
import com.logpm.factory.snm.entity.StationOrderEntity;
import com.logpm.factory.snm.vo.StationOrderVO;
import com.logpm.factory.snm.mapper.StationOrderMapper;
import com.logpm.factory.snm.service.IStationOrderService;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 寺尼曼运单 服务实现类
*
* @author pref
* @since 2023-03-28
*/
@Service
public class StationOrderServiceImpl extends BaseServiceImpl<StationOrderMapper, StationOrderEntity> implements IStationOrderService {
@Override
public IPage<StationOrderVO> selectStationOrderPage(IPage<StationOrderVO> page, StationOrderVO stationOrder) {
return page.setRecords(baseMapper.selectStationOrderPage(page, stationOrder));
}
}

42
blade-service/blade-factory/src/main/java/com/logpm/factory/snm/service/impl/StationlinenumServiceImpl.java

@ -0,0 +1,42 @@
/*
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the dreamlu.net developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package com.logpm.factory.snm.service.impl;
import com.logpm.factory.snm.entity.StationlinenumEntity;
import com.logpm.factory.snm.vo.StationlinenumVO;
import com.logpm.factory.snm.mapper.StationlinenumMapper;
import com.logpm.factory.snm.service.IStationlinenumService;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
* 诗尼曼线路 服务实现类
*
* @author pref
* @since 2023-03-28
*/
@Service
public class StationlinenumServiceImpl extends BaseServiceImpl<StationlinenumMapper, StationlinenumEntity> implements IStationlinenumService {
@Override
public IPage<StationlinenumVO> selectStationlinenumPage(IPage<StationlinenumVO> page, StationlinenumVO stationlinenum) {
return page.setRecords(baseMapper.selectStationlinenumPage(page, stationlinenum));
}
}
Loading…
Cancel
Save