家居大模型联调,大模型生成智能待办

This commit is contained in:
ZLI263
2025-11-22 17:53:18 +08:00
parent 36035d820b
commit 23fe2e70b1
10 changed files with 874 additions and 9 deletions

View File

@@ -0,0 +1,64 @@
package com.rj.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.time.LocalDateTime;
import java.io.Serializable;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 待办事项表
* </p>
*
* @author system
* @since 2025-01-XX
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("todo_item")
@Schema(description = "待办事项表")
public class TodoItem implements Serializable {
private static final long serialVersionUID = 1L;
@Schema(description = "主键UUID")
@TableId("id")
private String id;
@Schema(description = "父IDUUID用于树状结构关联")
@TableField("parent_id")
private String parentId;
@Schema(description = "状态")
@TableField("status")
private String status;
@Schema(description = "待办事项简称")
@TableField("todo_title")
private String todoTitle;
@Schema(description = "待办事项详情")
@TableField("todo_detail")
private String todoDetail;
@Schema(description = "所属人姓名")
@TableField("owner_name")
private String ownerName;
@Schema(description = "所属人电话")
@TableField("owner_phone")
private String ownerPhone;
@Schema(description = "创建时间")
@TableField("create_time")
private LocalDateTime createTime;
@Schema(description = "修改时间")
@TableField("update_time")
private LocalDateTime updateTime;
}