
21 changed files with 775 additions and 492 deletions
@ -0,0 +1,4 @@ |
|||||
|
package com.yxt.anrui.buscenter.api.vehicleBusinessFileManagement; |
||||
|
|
||||
|
public class VehicleBusinessFileManagementDetailVo { |
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.buscenter.api.vehicleBusinessFileManagement; |
||||
|
|
||||
|
import com.yxt.common.core.query.PagerQuery; |
||||
|
import com.yxt.common.core.result.ResultBean; |
||||
|
import com.yxt.common.core.vo.PagerVo; |
||||
|
import io.swagger.annotations.ApiOperation; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestBody; |
||||
|
|
||||
|
@FeignClient( |
||||
|
contextId = "anrui-buscenter-VehicleBusinessFileManagement", |
||||
|
name = "anrui-buscenter", |
||||
|
path = "v1/vehicleBusinessFileManagement") |
||||
|
public interface VehicleBusinessFileManagementFeign { |
||||
|
|
||||
|
|
||||
|
/*@ApiOperation("车辆业务档案管理列表") |
||||
|
@PostMapping("/listPage") |
||||
|
public ResultBean<PagerVo<VehicleBusinessFileManagementVo>> listPage(@RequestBody PagerQuery<VehicleBusinessFileManagementQuery> pq);*/ |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
package com.yxt.anrui.buscenter.api.vehicleBusinessFileManagement; |
||||
|
|
||||
|
public class VehicleBusinessFileManagementQuery { |
||||
|
} |
@ -0,0 +1,85 @@ |
|||||
|
package com.yxt.anrui.buscenter.api.vehicleBusinessFileManagement; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
@Data |
||||
|
public class VehicleBusinessFileManagementVo { |
||||
|
|
||||
|
/** |
||||
|
* 车架号 |
||||
|
*/ |
||||
|
private String vinNo; |
||||
|
/** |
||||
|
* 车型 |
||||
|
*/ |
||||
|
private String modelName; |
||||
|
/** |
||||
|
* 销售订单编号 |
||||
|
*/ |
||||
|
private String saleOrderNo; |
||||
|
/** |
||||
|
* 买卖合同编号 |
||||
|
*/ |
||||
|
private String contractNo; |
||||
|
/** |
||||
|
* 付款方式 |
||||
|
*/ |
||||
|
private String payType; |
||||
|
/** |
||||
|
* 业务类型 |
||||
|
*/ |
||||
|
private String businessType; |
||||
|
/** |
||||
|
* 客户名称 |
||||
|
*/ |
||||
|
private String customerName; |
||||
|
/** |
||||
|
* 客户电话 |
||||
|
*/ |
||||
|
private String customerPhone; |
||||
|
/** |
||||
|
* 销售合同价 |
||||
|
*/ |
||||
|
private String salePrice; |
||||
|
/** |
||||
|
* 开票单位 |
||||
|
*/ |
||||
|
private String invoiceTitle; |
||||
|
/** |
||||
|
* 开票类型 |
||||
|
*/ |
||||
|
private String invoiceType; |
||||
|
/** |
||||
|
* 出库日期 |
||||
|
*/ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||
|
private Date outBoundDate; |
||||
|
/** |
||||
|
* 交款金额 |
||||
|
*/ |
||||
|
private String paymentAmount; |
||||
|
/** |
||||
|
* 欠款金额 |
||||
|
*/ |
||||
|
private String arrearsMoney; |
||||
|
/** |
||||
|
* 业务状态 |
||||
|
*/ |
||||
|
private String businessStatus; |
||||
|
/** |
||||
|
* 分公司 |
||||
|
*/ |
||||
|
private String orgName; |
||||
|
/** |
||||
|
* 销售部门 |
||||
|
*/ |
||||
|
private String sellDept; |
||||
|
/** |
||||
|
* 销售专员 |
||||
|
*/ |
||||
|
private String staffName; |
||||
|
} |
@ -0,0 +1,47 @@ |
|||||
|
package com.yxt.wms.biz.inventory.wmsinventory; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/3/21 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class WmsInventoryOtherOutSelectList { |
||||
|
|
||||
|
//sid
|
||||
|
private String inventorySid; |
||||
|
//商品ID
|
||||
|
private String goodsID; |
||||
|
//商品spuSid
|
||||
|
private String goodsSpuSid; |
||||
|
//商品spu名称
|
||||
|
private String goodsSpuName; |
||||
|
//商品skuSid
|
||||
|
private String goodsSkuSid; |
||||
|
//商品sku名称
|
||||
|
private String goodsSkuTitle; |
||||
|
//图号
|
||||
|
private String goodsSkuCode; |
||||
|
//规格
|
||||
|
private String goodsSkuOwnSpec; |
||||
|
//厂家sid
|
||||
|
private String manufacturerSid; |
||||
|
//厂家名称
|
||||
|
private String manufacturerName; |
||||
|
//商品单位
|
||||
|
private String unit; |
||||
|
//仓库sid
|
||||
|
private String warehouseSid; |
||||
|
//仓库名称
|
||||
|
private String warehouseName; |
||||
|
//库位sid
|
||||
|
private String warehouseRackSid; |
||||
|
//库位编码
|
||||
|
private String warehouseRackCode; |
||||
|
//库存数量
|
||||
|
private String count; |
||||
|
//入库单价
|
||||
|
private String taxPrice; |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
package com.yxt.wms.biz.inventory.wmsinventory; |
||||
|
|
||||
|
import com.yxt.common.core.query.Query; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2024/3/21 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class WmsInventoryOtherOutSelectQuery implements Query { |
||||
|
|
||||
|
//商品名称
|
||||
|
private String goodsSkuTitle; |
||||
|
//商品编码
|
||||
|
private String goodsSkuCode; |
||||
|
//部门sid
|
||||
|
private String deptSid; |
||||
|
} |
File diff suppressed because it is too large
Loading…
Reference in new issue