
32 changed files with 960 additions and 13 deletions
@ -0,0 +1,31 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/7/22 14:42 |
|||
*/ |
|||
@Data |
|||
public class CarListVo { |
|||
|
|||
/** |
|||
* 购买日期 |
|||
*/ |
|||
private String buyDate; |
|||
private String sid; |
|||
/** |
|||
* 车牌号 |
|||
*/ |
|||
private String vehMark; |
|||
/** |
|||
* 车架号 |
|||
*/ |
|||
private String vinNo; |
|||
|
|||
|
|||
@ApiModelProperty("售后客户车辆信息sid") |
|||
private String asVinSid; // 售后客户车辆信息sid
|
|||
} |
@ -0,0 +1,167 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import lombok.Data; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/11/13 15:38 |
|||
*/ |
|||
@Data |
|||
public class MonthEndDetailsVo implements Vo { |
|||
/** |
|||
* 客户sid |
|||
*/ |
|||
private String customerSid; |
|||
/** |
|||
* 详细地址 |
|||
*/ |
|||
private String address; |
|||
|
|||
/** |
|||
* 详细地址 |
|||
*/ |
|||
private String customerAddress; |
|||
/** |
|||
* 车辆列表 |
|||
*/ |
|||
private List<CarListVo> carList = new ArrayList<>(); |
|||
/** |
|||
* 证件类型 |
|||
*/ |
|||
private String certificateType; |
|||
/** |
|||
* 证件类型Key |
|||
*/ |
|||
private String certificateTypeKey; |
|||
/** |
|||
* 市 |
|||
*/ |
|||
private String city; |
|||
/** |
|||
* 对接人列表 |
|||
*/ |
|||
private List<PersonListVo> contactPerson = new ArrayList<>(); |
|||
/** |
|||
* 县 |
|||
*/ |
|||
private String county; |
|||
/** |
|||
* 申请人 |
|||
*/ |
|||
private String createByName; |
|||
/** |
|||
* 申请人sid |
|||
*/ |
|||
private String createBySid; |
|||
/** |
|||
* 分公司 |
|||
*/ |
|||
private String createOrgName; |
|||
/** |
|||
* 分公司sid |
|||
*/ |
|||
private String createOrgSid; |
|||
/** |
|||
* 申请日期 |
|||
*/ |
|||
private String createTime; |
|||
/** |
|||
* 客户名称 |
|||
*/ |
|||
private String customerName; |
|||
/** |
|||
* 客户类型 |
|||
*/ |
|||
private String customerType; |
|||
/** |
|||
* 客户类型Key |
|||
*/ |
|||
private String customerTypeKey; |
|||
/** |
|||
* 申请部门 |
|||
*/ |
|||
private String deptName; |
|||
/** |
|||
* 申请部门sid |
|||
*/ |
|||
private String deptSid; |
|||
/** |
|||
* 电子邮箱 |
|||
*/ |
|||
private String e_mail; |
|||
/** |
|||
* 紧急联系人 |
|||
*/ |
|||
private String emergencyContact; |
|||
/** |
|||
* 紧急联系电话 |
|||
*/ |
|||
private String emergencyMobile; |
|||
/** |
|||
* 证书有效期 |
|||
*/ |
|||
private String endDate; |
|||
|
|||
private List<String> files2 = new ArrayList<>(); |
|||
/** |
|||
* 备案有效期 |
|||
*/ |
|||
private String filingIndate; |
|||
/** |
|||
* 备案类别,默认赋值"首次" |
|||
*/ |
|||
private String filingType; |
|||
/** |
|||
* 证书号码 |
|||
*/ |
|||
private String idnumber; |
|||
/** |
|||
* 流程实例ID |
|||
*/ |
|||
private String instanceId; |
|||
private String procInsId; |
|||
/** |
|||
* 联系电话 |
|||
*/ |
|||
private String mobile; |
|||
/** |
|||
* 省 |
|||
*/ |
|||
private String province; |
|||
/** |
|||
* 已备人数,首次备案默认为空 |
|||
*/ |
|||
private String readyStrength; |
|||
/** |
|||
* 已备车辆,首次备案默认为空 |
|||
*/ |
|||
private String readyVehicle; |
|||
/** |
|||
* 备注 |
|||
*/ |
|||
private String remarks; |
|||
private String sid; |
|||
/** |
|||
* 流程ID |
|||
*/ |
|||
private String taskId; |
|||
/** |
|||
* 分公司 |
|||
*/ |
|||
private String useOrgName; |
|||
/** |
|||
* 分公司sid |
|||
*/ |
|||
private String useOrgSid; |
|||
/** |
|||
* 微信号 |
|||
*/ |
|||
private String weixin; |
|||
|
|||
|
|||
} |
@ -0,0 +1,67 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
|
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.MonthEndDelegateQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.AppMonthEndTaskQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.MonthEndFlowableQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.CompleteMonthEndDto; |
|||
import com.yxt.common.core.result.ResultBean; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.cloud.openfeign.FeignClient; |
|||
import org.springframework.cloud.openfeign.SpringQueryMap; |
|||
import org.springframework.web.bind.annotation.*; |
|||
|
|||
import javax.validation.Valid; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: fzz |
|||
* @date: 2023/8/8 |
|||
**/ |
|||
@Api(tags = "欠款月结客户") |
|||
@FeignClient( |
|||
contextId = "terminal-MonthEnd", |
|||
name = "anrui-terminal", |
|||
path = "/crm/v1/MonthEnd", |
|||
fallback = MonthEndFeignFallback.class) |
|||
public interface MonthEndFeign { |
|||
|
|||
|
|||
@ApiOperation("详情") |
|||
@GetMapping("/detail/{sid}") |
|||
@ResponseBody |
|||
ResultBean<MonthEndDetailsVo> detail(@PathVariable("sid") String sid); |
|||
|
|||
//-------------------------流程-----------------------------------------
|
|||
|
|||
@ApiOperation("办理") |
|||
@PutMapping("/agreeCreditInfo") |
|||
@ResponseBody |
|||
ResultBean agreeCreditInfo(@Valid @RequestBody CompleteMonthEndDto dto); |
|||
|
|||
@ApiOperation("驳回") |
|||
@PutMapping("/rejectCreditInfo") |
|||
@ResponseBody |
|||
ResultBean rejectCreditInfo(@Valid @RequestBody AppMonthEndTaskQuery query); |
|||
|
|||
@ApiOperation("撤回") |
|||
@PutMapping("/recallCreditInfo") |
|||
@ResponseBody |
|||
ResultBean recallCreditInfo(@Valid @RequestBody AppMonthEndTaskQuery query); |
|||
|
|||
@ApiOperation("终止") |
|||
@PutMapping("/stopCreditInfo") |
|||
@ResponseBody |
|||
ResultBean stopCreditInfo(@Valid @RequestBody AppMonthEndTaskQuery query); |
|||
|
|||
@ApiOperation("获取流程操作标题") |
|||
@GetMapping("/getFlowOperateTitle") |
|||
@ResponseBody |
|||
ResultBean<String> getFlowOperateTitle(@Valid @SpringQueryMap MonthEndFlowableQuery query); |
|||
|
|||
@ApiOperation(value = "加签") |
|||
@PutMapping(value = "/delegate") |
|||
@ResponseBody |
|||
public ResultBean delegate(@RequestBody MonthEndDelegateQuery delegateQuery); |
|||
} |
@ -0,0 +1,52 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.MonthEndDelegateQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.AppMonthEndTaskQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.MonthEndFlowableQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.CompleteMonthEndDto; |
|||
import com.yxt.common.core.result.ResultBean; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: fzz |
|||
* @date: |
|||
**/ |
|||
@Component |
|||
public class MonthEndFeignFallback implements MonthEndFeign { |
|||
|
|||
@Override |
|||
public ResultBean<MonthEndDetailsVo> detail(String sid) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean agreeCreditInfo(CompleteMonthEndDto dto) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean rejectCreditInfo(AppMonthEndTaskQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean recallCreditInfo(AppMonthEndTaskQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean stopCreditInfo(AppMonthEndTaskQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean<String> getFlowOperateTitle(MonthEndFlowableQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean delegate(MonthEndDelegateQuery delegateQuery) { |
|||
return null; |
|||
} |
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/7/22 14:42 |
|||
*/ |
|||
@Data |
|||
public class PersonListVo { |
|||
|
|||
/** |
|||
* 手机号码 |
|||
*/ |
|||
private String mobile; |
|||
/** |
|||
* 姓名 |
|||
*/ |
|||
private String name; |
|||
/** |
|||
* 备注 |
|||
*/ |
|||
private String remarks; |
|||
private String sid; |
|||
|
|||
@ApiModelProperty("对接人员sid") |
|||
private String personSid; // 对接人员sid
|
|||
|
|||
|
|||
} |
@ -0,0 +1,46 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/10/17 9:14 |
|||
*/ |
|||
@Data |
|||
public class AppMonthEndTaskQuery implements Query { |
|||
/** |
|||
* 终止、驳回、撤回 |
|||
*/ |
|||
@ApiModelProperty("任务Id") |
|||
@NotBlank(message = "参数错误:taskId") |
|||
private String taskId; |
|||
/** |
|||
* 终止、驳回、撤回 |
|||
*/ |
|||
@ApiModelProperty("业务sid") |
|||
@NotBlank(message = "参数错误:businessSid") |
|||
private String businessSid; |
|||
/** |
|||
* 终止、驳回 |
|||
*/ |
|||
@ApiModelProperty("任务意见") |
|||
private String comment; |
|||
/** |
|||
* 终止、撤回、驳回 |
|||
*/ |
|||
@ApiModelProperty("用户Sid") |
|||
private String userSid; |
|||
/** |
|||
* 终止 |
|||
*/ |
|||
@ApiModelProperty("流程实例Id") |
|||
@JsonProperty("procInsId") |
|||
private String instanceId; |
|||
|
|||
} |
@ -0,0 +1,35 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/10/17 9:13 |
|||
*/ |
|||
@Data |
|||
public class CompleteMonthEndDto implements Dto { |
|||
@ApiModelProperty(value = "任务id") |
|||
@NotBlank(message = "参数错误:taskId") |
|||
private String taskId; |
|||
@ApiModelProperty(value = "流程id") |
|||
@NotBlank(message = "参数错误:procInsId") |
|||
@JsonProperty("procInsId") |
|||
private String instanceId; |
|||
@ApiModelProperty(value = "意见") |
|||
private String comment; |
|||
@ApiModelProperty(value = "业务sid") |
|||
@NotBlank(message = "参数错误:businessSid") |
|||
private String businessSid; |
|||
@ApiModelProperty(value = "用户sid") |
|||
@NotBlank(message = "参数错误:userSid") |
|||
private String userSid; |
|||
@ApiModelProperty(value = "节点id") |
|||
@NotBlank(message = "参数错误:taskDefKey") |
|||
private String taskDefKey; |
|||
} |
@ -0,0 +1,25 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/9/28 10:16 |
|||
*/ |
|||
@Data |
|||
public class MonthEndDelegateQuery { |
|||
@ApiModelProperty |
|||
private String userSid; |
|||
@ApiModelProperty("流程实例id") |
|||
@JsonProperty("procInsId") |
|||
private String instanceId; |
|||
@ApiModelProperty("任务Id") |
|||
private String taskId; |
|||
@ApiModelProperty("审批人sid") |
|||
private String assignee; |
|||
@ApiModelProperty("填写意见") |
|||
private String views; |
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
|
|||
@Data |
|||
public class MonthEndFlowableQuery implements Query { |
|||
private static final long serialVersionUID = -5879668616710833830L; |
|||
|
|||
@ApiModelProperty(value = "节点key") |
|||
private String taskDefKey; |
|||
@ApiModelProperty(value = "业务sid") |
|||
private String businessSid; |
|||
@ApiModelProperty(value = "0 上一环节 1下一环节") |
|||
@NotNull(message = "参数错误:next") |
|||
private Integer next; |
|||
|
|||
} |
@ -0,0 +1,97 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.terminal.biz.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.MonthEndDetailsVo; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.MonthEndFeign; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.AppMonthEndTaskQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.CompleteMonthEndDto; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.MonthEndDelegateQuery; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.flow.MonthEndFlowableQuery; |
|||
import com.yxt.anrui.terminal.api.finance.collectionConfirm.*; |
|||
import com.yxt.common.core.result.ResultBean; |
|||
import io.swagger.annotations.Api; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* Project: anrui-fin(销售相关) <br/> |
|||
* File: FinCollectionConfirmationFeignFallback.java <br/> |
|||
* Class: com.yxt.anrui.fin.biz.fincollectionconfirmation.FinCollectionConfirmationRest <br/> |
|||
* Description: 收款确认表. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-04-12 17:57:01 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Api(tags = "欠款月结客户备案") |
|||
@RequestMapping("/crm/v1/MonthEnd") |
|||
@RestController |
|||
public class MonthEndRest implements MonthEndFeign { |
|||
|
|||
@Autowired |
|||
private MonthEndService monthEndService; |
|||
|
|||
|
|||
@Override |
|||
public ResultBean<MonthEndDetailsVo> detail(String sid) { |
|||
return monthEndService.detail(sid); |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean agreeCreditInfo(CompleteMonthEndDto dto) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean rejectCreditInfo(AppMonthEndTaskQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean recallCreditInfo(AppMonthEndTaskQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean stopCreditInfo(AppMonthEndTaskQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean<String> getFlowOperateTitle(MonthEndFlowableQuery query) { |
|||
return null; |
|||
} |
|||
|
|||
@Override |
|||
public ResultBean delegate(MonthEndDelegateQuery delegateQuery) { |
|||
return null; |
|||
} |
|||
} |
@ -0,0 +1,70 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.terminal.biz.crm.crmmaintenanceenterpriserecord; |
|||
|
|||
|
|||
import cn.hutool.core.bean.BeanUtil; |
|||
import com.yxt.anrui.crm.api.crmmaintenanceenterpriserecord.CrmMaintenanceenterpriseRecordDetailsVo; |
|||
import com.yxt.anrui.crm.api.crmmaintenanceenterpriserecord.CrmMaintenanceenterpriseRecordFeign; |
|||
import com.yxt.anrui.terminal.api.crm.crmmaintenanceenterpriserecord.MonthEndDetailsVo; |
|||
import com.yxt.common.core.result.ResultBean; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
import java.util.Optional; |
|||
import java.util.stream.Collectors; |
|||
|
|||
/** |
|||
* Project: anrui-fin(销售相关) <br/> |
|||
* File: FinCollectionConfirmationService.java <br/> |
|||
* Class: com.yxt.anrui.fin.biz.fincollectionconfirmation.FinCollectionConfirmationService <br/> |
|||
* Description: 收款确认表 业务逻辑. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-04-12 17:57:01 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Service |
|||
public class MonthEndService { |
|||
|
|||
@Autowired |
|||
private CrmMaintenanceenterpriseRecordFeign crmMaintenanceenterpriseRecordFeign; |
|||
|
|||
public ResultBean<MonthEndDetailsVo> detail(String sid) { |
|||
ResultBean rb = ResultBean.fireFail(); |
|||
MonthEndDetailsVo vo = new MonthEndDetailsVo(); |
|||
CrmMaintenanceenterpriseRecordDetailsVo data = crmMaintenanceenterpriseRecordFeign.fetchDetailsBySid(sid).getData(); |
|||
if (null != data) { |
|||
BeanUtil.copyProperties(data,vo); |
|||
} |
|||
return rb.success().setData(vo); |
|||
} |
|||
} |
@ -0,0 +1,46 @@ |
|||
package com.yxt.wms.biz.inventory.wmsinventory; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/8/21 16:41 |
|||
*/ |
|||
@Data |
|||
public class FittingsInventoryQuery implements Query { |
|||
|
|||
/** |
|||
* 供应商 |
|||
*/ |
|||
private String billObjName; |
|||
/** |
|||
* 服务站 |
|||
*/ |
|||
private String deptName; |
|||
/** |
|||
* 图号 |
|||
*/ |
|||
private String goodsSkuCode; |
|||
/** |
|||
* 商品名称 |
|||
*/ |
|||
private String goodsSpuName; |
|||
/** |
|||
* 厂家 |
|||
*/ |
|||
private String manufacturerName; |
|||
private String menuUrl; |
|||
private String orgPath; |
|||
/** |
|||
* 分公司 |
|||
*/ |
|||
private String useOrgName; |
|||
private String userSid; |
|||
/** |
|||
* 仓库 |
|||
*/ |
|||
private String warehouseName; |
|||
|
|||
} |
@ -0,0 +1,55 @@ |
|||
package com.yxt.wms.biz.inventory.wmsinventory; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/8/21 16:43 |
|||
*/ |
|||
@Data |
|||
public class FittingsInventoryVo implements Vo { |
|||
|
|||
/** |
|||
* 供应商 |
|||
*/ |
|||
private String billObjName; |
|||
/** |
|||
* 图号 |
|||
*/ |
|||
private String goodsSkuCode; |
|||
/** |
|||
* 规格 |
|||
*/ |
|||
private String goodsSkuOwnSpec; |
|||
/** |
|||
* 商品名称 |
|||
*/ |
|||
private String goodsSpuName; |
|||
/** |
|||
* 库存 |
|||
*/ |
|||
private String inventoryCount; |
|||
/** |
|||
* 厂家 |
|||
*/ |
|||
private String manufacturerName; |
|||
/** |
|||
* 服务站 |
|||
*/ |
|||
private String deptName; |
|||
/** |
|||
* 分公司 |
|||
*/ |
|||
private String useOrgName; |
|||
/** |
|||
* 单位 |
|||
*/ |
|||
private String unit; |
|||
/** |
|||
* 仓库 |
|||
*/ |
|||
private String warehouseName; |
|||
|
|||
} |
Loading…
Reference in new issue