liyong
9 天以前 d3e57f662fc00214c9d1b1caa9a4dd542a9d2e1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.iocoder.yudao.module.ai.tool.method;
 
/**
 * 来自 Spring AI 官方文档
 *
 * Represents a person with basic information.
 * This is an immutable record.
 */
public record Person(
        int id,
        String firstName,
        String lastName,
        String email,
        String sex,
        String ipAddress,
        String jobTitle,
        int age
) {
}