
40 changed files with 2041 additions and 408 deletions
@ -0,0 +1,83 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehicleenterlibrary; |
|||
|
|||
|
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleEnterlibraryDto.java <br/> |
|||
* Class: scm.api.scmvehicleenterlibrary.ScmVehicleEnterlibraryDto <br/> |
|||
* Description: 入库单 数据传输对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "入库单 数据传输对象", description = "入库单 数据传输对象") |
|||
public class AppScmVehicleEnterlibraryCarWarehousingDto implements Dto { |
|||
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; |
|||
|
|||
@ApiModelProperty("订单类型") |
|||
private String purchaseType; |
|||
|
|||
@ApiModelProperty("订单类型") |
|||
private String purchaseTypeKey; |
|||
|
|||
@ApiModelProperty("车型") |
|||
private String modelName; |
|||
|
|||
@ApiModelProperty("发车日期") |
|||
private String departureDate; |
|||
|
|||
@ApiModelProperty("验车日期") |
|||
private String inspectionDate; |
|||
|
|||
@ApiModelProperty("验车人") |
|||
private String inspection; |
|||
|
|||
@ApiModelProperty("入库状态") |
|||
private String inboundState; |
|||
|
|||
@ApiModelProperty("分公司sid") |
|||
private String useOrgSid; |
|||
|
|||
@ApiModelProperty("分公司名称") |
|||
private String useOrgName; |
|||
} |
@ -0,0 +1,51 @@ |
|||
package com.yxt.anrui.scm.api.scmvehicleenterlibrary; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
@Data |
|||
public class AppScmVehicleEnterlibraryDetailsVo implements Vo { |
|||
|
|||
@ApiModelProperty("车架号") |
|||
private String vin; |
|||
|
|||
@ApiModelProperty("订单类型") |
|||
private String type; |
|||
|
|||
@ApiModelProperty("车型") |
|||
private String model; |
|||
|
|||
@ApiModelProperty("验车日期") |
|||
private String dispatchedDate; |
|||
|
|||
@ApiModelProperty("验车人") |
|||
private String inspectedName; |
|||
|
|||
@ApiModelProperty("验车日期") |
|||
private String inspectedDate; |
|||
|
|||
@ApiModelProperty("入库人") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("入库日期") |
|||
private String date; |
|||
|
|||
@ApiModelProperty("仓库") |
|||
private String warehouse; |
|||
|
|||
@ApiModelProperty("仓库管理员") |
|||
private String warehouseName; |
|||
|
|||
@ApiModelProperty("车辆库位照片") |
|||
private List<String> image; |
|||
|
|||
@ApiModelProperty("入库状态") |
|||
private String warehousingState; |
|||
|
|||
@ApiModelProperty("定位位置") |
|||
private String location; |
|||
|
|||
} |
@ -0,0 +1,83 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehicleenterlibrary; |
|||
|
|||
|
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleEnterlibraryDto.java <br/> |
|||
* Class: scm.api.scmvehicleenterlibrary.ScmVehicleEnterlibraryDto <br/> |
|||
* Description: 入库单 数据传输对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "入库单 数据传输对象", description = "入库单 数据传输对象") |
|||
public class AppScmVehicleEnterlibraryDto implements Dto { |
|||
|
|||
@ApiModelProperty("sid") |
|||
private String warehousingSid; |
|||
|
|||
@ApiModelProperty("用户sid") |
|||
private String userSid; |
|||
|
|||
@ApiModelProperty("入库时间") |
|||
private String date; |
|||
|
|||
@ApiModelProperty("入库人") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("车架号") |
|||
private String vin; |
|||
|
|||
@ApiModelProperty("库位") |
|||
private String warehouseKey; |
|||
|
|||
@ApiModelProperty("库位") |
|||
private String warehouse; |
|||
|
|||
@ApiModelProperty("定位地址") |
|||
private String address; |
|||
|
|||
@ApiModelProperty("经纬度") |
|||
private String location; |
|||
|
|||
@ApiModelProperty("车辆库位照片") |
|||
private List<String> warehouseImage; |
|||
|
|||
} |
@ -0,0 +1,83 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehicleenterlibrary; |
|||
|
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleEnterlibraryVo.java <br/> |
|||
* Class: scm.api.scmvehicleenterlibrary.ScmVehicleEnterlibraryVo <br/> |
|||
* Description: 入库单 视图数据对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "入库单 视图数据对象", description = "入库单 视图数据对象") |
|||
public class AppScmVehicleEnterlibraryInfoVo implements Vo { |
|||
|
|||
@ApiModelProperty("sid") |
|||
private String warehousingSid; |
|||
|
|||
@ApiModelProperty("用户sid") |
|||
private String userSid; |
|||
|
|||
@ApiModelProperty("入库日期") |
|||
private String date; |
|||
|
|||
@ApiModelProperty("入库人") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("车架号") |
|||
private String vin; |
|||
|
|||
@ApiModelProperty("库位") |
|||
private String warehouseKey; |
|||
|
|||
@ApiModelProperty("库位") |
|||
private String warehouse; |
|||
|
|||
@ApiModelProperty("定位地址") |
|||
private String address; |
|||
|
|||
@ApiModelProperty("经纬度") |
|||
private String location; |
|||
|
|||
@ApiModelProperty("库位照片") |
|||
private List<String> warehouseImage; |
|||
|
|||
} |
@ -0,0 +1,22 @@ |
|||
package com.yxt.anrui.scm.api.scmvehicleenterlibrary; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class AppScmVehicleEnterlibraryPageQuery implements Query { |
|||
|
|||
@ApiModelProperty("用户sid") |
|||
private String userSid; |
|||
|
|||
@ApiModelProperty("类型 “”或null 全部 1待入库 2已入库") |
|||
private String type; |
|||
|
|||
@ApiModelProperty("车架号、车型、订单类型") |
|||
private String names; |
|||
|
|||
@ApiModelProperty("使用组织分公司sid") |
|||
private String useOrgSid; |
|||
|
|||
} |
@ -0,0 +1,46 @@ |
|||
package com.yxt.anrui.scm.api.scmvehicleenterlibrary; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class AppScmVehicleEnterlibraryPageVo implements Vo { |
|||
|
|||
@ApiModelProperty("车型") |
|||
private String model; |
|||
|
|||
@ApiModelProperty("车架号") |
|||
private String vin; |
|||
|
|||
@ApiModelProperty("验车人") |
|||
private String inspectedName; |
|||
|
|||
@ApiModelProperty("验车时间") |
|||
private String inspectedDate; |
|||
|
|||
@ApiModelProperty("订单类型") |
|||
private String purchaseType; |
|||
|
|||
@ApiModelProperty("发车日期") |
|||
private String dispatchedDate; |
|||
|
|||
@ApiModelProperty("是否显示入库按钮") |
|||
private boolean showWarehousingBtn; |
|||
|
|||
@ApiModelProperty("入库日期") |
|||
private String warehousingDate; |
|||
|
|||
@ApiModelProperty("库位地址") |
|||
private String address; |
|||
|
|||
@ApiModelProperty("仓库管理员") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("sid") |
|||
private String warehousingSid; |
|||
|
|||
@ApiModelProperty("入库状态") |
|||
private String inboundState; |
|||
|
|||
} |
@ -0,0 +1,98 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehiclegression; |
|||
|
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleGressionVo.java <br/> |
|||
* Class: scm.api.scmvehiclegression.ScmVehicleGressionVo <br/> |
|||
* Description: 移位单 视图数据对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "移位单 视图数据详情", description = "移位单 视图数据详情") |
|||
public class AppScmVehicleGressionDetailsVo implements Vo { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("车辆sid") |
|||
private String vehicleSid; // 车辆sid
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; // 车架号
|
|||
@ApiModelProperty("申请编号") |
|||
private String applicantNo; // 申请编号
|
|||
@ApiModelProperty("申请人") |
|||
private String applicantName; |
|||
@ApiModelProperty("申请编日期") |
|||
private String applicantDate; |
|||
@ApiModelProperty("现存地点") |
|||
private String location; // 现存地点
|
|||
@ApiModelProperty("现存地点") |
|||
private String locationSid; |
|||
@ApiModelProperty("现存地点") |
|||
private String locationKey; |
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocation; // 目标地点
|
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocationSid; |
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocationKey; |
|||
@ApiModelProperty("变更原因") |
|||
private String changeReason; // 变更原因
|
|||
@ApiModelProperty("申请经费") |
|||
private String applicantFunds; // 申请经费
|
|||
@ApiModelProperty("经办人") |
|||
private String operator; // 经办人
|
|||
@ApiModelProperty("保险状态") |
|||
private String InsuranceState; // 保险状态
|
|||
@ApiModelProperty("保险状态") |
|||
private String InsuranceStateKey; |
|||
@ApiModelProperty("临牌") |
|||
private String temporaryCard; // 临牌
|
|||
@ApiModelProperty("审核状态") |
|||
private String nodeState; |
|||
@ApiModelProperty("用户sid") |
|||
private String userSid; |
|||
@ApiModelProperty("保单照片") |
|||
private List<String> policyImage; |
|||
@ApiModelProperty("现场照片") |
|||
private List<String> image; |
|||
|
|||
} |
@ -0,0 +1,93 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehiclegression; |
|||
|
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleGressionDto.java <br/> |
|||
* Class: scm.api.scmvehiclegression.ScmVehicleGressionDto <br/> |
|||
* Description: 移位单 数据传输对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "移位单 数据传输对象", description = "移位单 数据传输对象") |
|||
public class AppScmVehicleGressionDto implements Dto { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("车辆sid") |
|||
private String vehicleSid; // 车辆sid
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; // 车架号
|
|||
@ApiModelProperty("申请编号") |
|||
private String applicantNo; // 申请编号
|
|||
@ApiModelProperty("现存地点") |
|||
private String location; // 现存地点
|
|||
@ApiModelProperty("现存放地点") |
|||
private String locationKey; |
|||
@ApiModelProperty("现存放地点sid") |
|||
private String locationSid; |
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocation; // 目标地点
|
|||
@ApiModelProperty("目标库") |
|||
private String targetLocationKey; |
|||
@ApiModelProperty("目标库sid") |
|||
private String targetLocationSid; |
|||
@ApiModelProperty("变更原因") |
|||
private String changeReason; // 变更原因
|
|||
@ApiModelProperty("申请经费") |
|||
private String applicantFunds; // 申请经费
|
|||
@ApiModelProperty("经办人") |
|||
private String operator; // 经办人
|
|||
@ApiModelProperty("保险状态") |
|||
private String InsuranceState; // 保险状态
|
|||
@ApiModelProperty("保险状态") |
|||
private String InsuranceStateKey; // 保险状态
|
|||
@ApiModelProperty("临牌") |
|||
private String temporaryCard; // 临牌
|
|||
@ApiModelProperty("任务id") |
|||
private String taskId; // 任务id
|
|||
@ApiModelProperty("流程实例id") |
|||
private String procInsId; // 流程实例id
|
|||
@ApiModelProperty("保单照片") |
|||
private List<String> policyImage; |
|||
|
|||
} |
@ -0,0 +1,98 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehiclegression; |
|||
|
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleGressionVo.java <br/> |
|||
* Class: scm.api.scmvehiclegression.ScmVehicleGressionVo <br/> |
|||
* Description: 移位单 视图数据对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "移位单 视图数据对象", description = "移位单 视图数据对象") |
|||
public class AppScmVehicleGressionInfoVo implements Vo { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("车辆sid") |
|||
private String vehicleSid; // 车辆sid
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; // 车架号
|
|||
@ApiModelProperty("申请编号") |
|||
private String applicantNo; // 申请编号
|
|||
@ApiModelProperty("申请人") |
|||
private String applicantName; |
|||
@ApiModelProperty("申请编日期") |
|||
private String applicantDate; |
|||
@ApiModelProperty("现存地点") |
|||
private String location; // 现存地点
|
|||
@ApiModelProperty("现存地点") |
|||
private String locationSid; |
|||
@ApiModelProperty("现存地点") |
|||
private String locationKey; |
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocation; // 目标地点
|
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocationSid; |
|||
@ApiModelProperty("目标地点") |
|||
private String targetLocationKey; |
|||
@ApiModelProperty("变更原因") |
|||
private String changeReason; // 变更原因
|
|||
@ApiModelProperty("申请经费") |
|||
private String applicantFunds; // 申请经费
|
|||
@ApiModelProperty("经办人") |
|||
private String operator; // 经办人
|
|||
@ApiModelProperty("保险状态") |
|||
private String InsuranceState; // 保险状态
|
|||
@ApiModelProperty("保险状态") |
|||
private String InsuranceStateKey; |
|||
@ApiModelProperty("临牌") |
|||
private String temporaryCard; // 临牌
|
|||
@ApiModelProperty("审核状态") |
|||
private String nodeState; |
|||
@ApiModelProperty("用户sid") |
|||
private String userSid; |
|||
@ApiModelProperty("保单照片") |
|||
private List<String> policyImage; |
|||
@ApiModelProperty("现场照片") |
|||
private List<String> image; |
|||
|
|||
} |
@ -0,0 +1,63 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehiclegression; |
|||
|
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleGressionQuery.java <br/> |
|||
* Class: scm.api.scmvehiclegression.ScmVehicleGressionQuery <br/> |
|||
* Description: 移位单 查询条件. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "移位单 查询条件", description = "移位单 查询条件") |
|||
public class AppScmVehicleGressionPageQuery implements Query { |
|||
|
|||
@ApiModelProperty("用户sid") |
|||
private String userSid; |
|||
|
|||
@ApiModelProperty(" 先 申请单编号 后 车架号 ") |
|||
private String names; |
|||
|
|||
@ApiModelProperty(" “”或null 全部 1待办 2已办 ") |
|||
private String type; |
|||
|
|||
@ApiModelProperty("分公司sid") |
|||
private String useOrgSid; |
|||
|
|||
} |
@ -0,0 +1,80 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.scm.api.scmvehiclegression; |
|||
|
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* Project: scm(scm) <br/> |
|||
* File: ScmVehicleGressionVo.java <br/> |
|||
* Class: scm.api.scmvehiclegression.ScmVehicleGressionVo <br/> |
|||
* Description: 移位单 视图数据对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2022-06-06 09:53:39 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "移位单 视图数据对象", description = "移位单 视图数据对象") |
|||
public class AppScmVehicleGressionPageVo implements Vo { |
|||
|
|||
@ApiModelProperty("sid") |
|||
private String sid; |
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; |
|||
@ApiModelProperty("申请编号") |
|||
private String applicantNo; |
|||
@ApiModelProperty("状态") |
|||
private String InsuranceState; |
|||
@ApiModelProperty("申请人") |
|||
private String applicantName; |
|||
@ApiModelProperty("申请日期") |
|||
private String applicantDate; |
|||
@ApiModelProperty("申请费用") |
|||
private String applicantFunds; |
|||
@ApiModelProperty("临时出门证下载") |
|||
private String temporaryCard; |
|||
@ApiModelProperty("审核状态") |
|||
private String nodeState; |
|||
|
|||
@ApiModelProperty("是否显示删除 流程未提交时 显示") |
|||
private boolean showDetectBtn; |
|||
@ApiModelProperty("是否显示办理 流程未提交时 显示") |
|||
private boolean showUpdateBtn; |
|||
@ApiModelProperty("是否显示上传 审批流程完成后并且未上传现场照片时显示") |
|||
private boolean showUploadBtn; |
|||
@ApiModelProperty("是否显示临时出门证按钮 审批流程完成后并且未上传现场照片时显示") |
|||
private boolean showDownloadBtn; |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.yxt.anrui.scm.api.scmwarehouse; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class AppScmWarehouseVo implements Vo { |
|||
|
|||
@ApiModelProperty("仓库sid") |
|||
private String sid; |
|||
@ApiModelProperty("仓库key") |
|||
private String dictKey; |
|||
@ApiModelProperty("仓库value") |
|||
private String dictValue; |
|||
} |
@ -1,22 +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.yxt.anrui.scm.biz.scmwarehouse.ScmWarehouseMapper"> |
|||
<!-- <where> ${ew.sqlSegment} </where>--> |
|||
<!-- ${ew.customSqlSegment} --> |
|||
<select id="selectPageVo" resultType="com.yxt.anrui.scm.api.scmwarehouse.ScmWarehouseVo"> |
|||
SELECT * FROM scm_warehouse <where> ${ew.sqlSegment} </where> |
|||
</select> |
|||
|
|||
<select id="selectListAllVo" resultType="com.yxt.anrui.scm.api.scmwarehouse.ScmWarehouseVo"> |
|||
SELECT * FROM scm_warehouse <where> ${ew.sqlSegment} </where> |
|||
</select> |
|||
<!-- <where> ${ew.sqlSegment} </where>--> |
|||
<!-- ${ew.customSqlSegment} --> |
|||
<select id="selectPageVo" resultType="com.yxt.anrui.scm.api.scmwarehouse.ScmWarehouseVo"> |
|||
SELECT * FROM scm_warehouse |
|||
<where>${ew.sqlSegment}</where> |
|||
</select> |
|||
|
|||
<select id="fetchByUseOrgSid" resultType="java.util.Map"> |
|||
SELECT |
|||
sid, |
|||
warehouseName |
|||
FROM |
|||
scm_warehouse |
|||
WHERE useOrgSid = #{sid} |
|||
</select> |
|||
<select id="selectListAllVo" resultType="com.yxt.anrui.scm.api.scmwarehouse.ScmWarehouseVo"> |
|||
SELECT * FROM scm_warehouse |
|||
<where>${ew.sqlSegment}</where> |
|||
</select> |
|||
|
|||
<select id="fetchByUseOrgSid" resultType="java.util.Map"> |
|||
SELECT sid, |
|||
warehouseName |
|||
FROM scm_warehouse |
|||
WHERE useOrgSid = #{sid} |
|||
</select> |
|||
|
|||
<select id="selectWarehouseByUserSid" resultType="com.yxt.anrui.scm.api.scmwarehouse.AppScmWarehouseVo"> |
|||
SELECT sid, |
|||
sid as dictKey, |
|||
warehouseName as dictValue |
|||
FROM scm_warehouse |
|||
WHERE useOrgSid = #{useOrgSid} |
|||
</select> |
|||
</mapper> |
Loading…
Reference in new issue