风控之眼,风险预警平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

20 lines
310 B

package com.fkzy.warn.model;
import lombok.Data;
/**
* @author zhangjing
* @date 2026/03/18 15:23
* @description
*/
@Data
public class AImessage {
/**
* 会话角色(user代表用户,assistant代表系统)
*/
String role;
/**
* 会话内容
*/
String content;
}