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.

46 lines
745 B
Java

2 months ago
package com.supervision.vo.talk;
import cn.hutool.core.util.StrUtil;
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;
// <<<<<========方便前端好传参=======
}