You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
707 B
Java

This file contains ambiguous Unicode characters!

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;
// <<<<<========方便前端好传参=======
}