This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.supervision.model;
import lombok.Data;
@Data
public class RobotTalkReq {
private String sessionId;
/**
* 问题id
*/
private String askId;
private String message;
* 问题内容类型:1-文本,2-音频,3-文件,4-图片,5-视频
private Integer answerType;
* 关键内容确认标识
private boolean confirmFlag;
// ========方便前端好传参=======>>>>>>
* 名字
private String name;
* 卡号
private String cardNumber;
* 身份证件号
private String idNumber;
// <<<<<========方便前端好传参=======
}