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
| ) {
| }
|
|