From 0dccef48a4863754bd6080511bdf9372c0004d78 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期五, 19 四月 2024 11:05:55 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/java/com/smartor/domain/PhoneCallBackVO.java | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 58 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/java/com/smartor/domain/PhoneCallBackVO.java b/smartor/src/main/java/com/smartor/domain/PhoneCallBackVO.java new file mode 100644 index 0000000..c73dba2 --- /dev/null +++ b/smartor/src/main/java/com/smartor/domain/PhoneCallBackVO.java @@ -0,0 +1,58 @@ +package com.smartor.domain; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * 鐢佃瘽鍥炶皟 + * + * @author ls + * @date 2024-04-10 + */ +@Data +public class PhoneCallBackVO { + + // 缁撴灉绫诲瀷 鍛煎彨缁撴灉鎺ュ彛: 1 閫氳瘽鐘舵�佹洿鏂版帴鍙�: 2 璇煶璇嗗埆缁撴灉涓婃姤鎺ュ彛: 3 + @ApiModelProperty(value = "缁撴灉绫诲瀷 鍛煎彨缁撴灉鎺ュ彛: 1 閫氳瘽鐘舵�佹洿鏂版帴鍙�: 2 璇煶璇嗗埆缁撴灉涓婃姤鎺ュ彛: 3 ") + private Integer resultType; + + // UUID + @ApiModelProperty(value = "uuid") + private String uuid; + + + /** + * 鍛煎彨缁撴灉鎺ュ彛 + */ + //鎴愬姛,1-澶辫触 + @ApiModelProperty(value = "0-鎴愬姛,1-澶辫触") + private Integer uint8; + + + //澶辫触鍘熷洜(娌℃湁绾胯矾銆佸鍛煎懡浠ゆ牸寮忛敊璇�佺敤鎴锋湭娉ㄥ唽...FS渚у畾涔�) + @ApiModelProperty(value = "澶辫触鍘熷洜(娌℃湁绾胯矾銆佸鍛煎懡浠ゆ牸寮忛敊璇�佺敤鎴锋湭娉ㄥ唽...FS渚у畾涔�)") + private String errResult; + + /** + * 閫氳瘽鐘舵�佹洿鏂版帴鍙� + */ + //鐘舵�� 0-鎸搩锛�1-鎺ュ惉銆�2-鎸傛柇涓夌(鏆傚畾) + @ApiModelProperty(value = "0-鎸搩锛�1-鎺ュ惉銆�2-鎸傛柇涓夌(鏆傚畾)") + private Integer enumState; + + //鎸傛柇鍘熷洜(濡傛灉鏄寕鏂殑璇�) + @ApiModelProperty(value = "鎸傛柇鍘熷洜(濡傛灉鏄寕鏂殑璇�)") + private String hangUpResult; + + /** + * 璇煶璇嗗埆缁撴灉涓婃姤鎺ュ彛 + */ + //璇煶璇嗗埆缁撴灉鏂囨湰 + @ApiModelProperty(value = "璇煶璇嗗埆缁撴灉鏂囨湰") + private String textResult; + + @Override + public String toString() { + return "PhoneCallBackVO{" + "resultType=" + resultType + ", uuid='" + uuid + '\'' + ", uint8=" + uint8 + ", errResult='" + errResult + '\'' + ", enumState=" + enumState + ", hangUpResult='" + hangUpResult + '\'' + ", textResult='" + textResult + '\'' + '}'; + } +} -- Gitblit v1.9.3