package com.group9.trainmanager.model; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data @TableName("front") public class Front { @TableField("fro_id") @TableId(type = IdType.AUTO) private Integer froId; @TableField("fro_html") private String froHtml; @TableField("fro_js") private String froJs; @TableField("fro_css") private String froCss; @TableField("fro_vue") private String froVue; @TableField("fro_axios") private String froAxios; @TableField("fro_vuerouter") private String froVueRouter; @TableField("fro_vuex") private String froVuex; @TableField("fro_stuid") private Integer froStuid; @TableField("fro_del") private Integer froDel; }
时间: 2024-04-16 17:25:01 浏览: 211
这是一个名为Front的Java类,用于映射数据库表"front"的字段。该类使用了Lombok库的@Data注解,自动生成了getter和setter方法。
@TableField注解用于指定数据库表中对应的字段名。它可以在属性上使用,也可以在getter方法上使用。
@TableId注解用于指定表的主键字段,type = IdType.AUTO表示使用自增主键。
类中的属性对应了数据库表中的字段,包括froId、froHtml、froJs、froCss、froVue、froAxios、froVueRouter、froVuex、froStuid和froDel。
其中,froHtml、froJs、froCss、froVue、froAxios、froVueRouter和froVuex都是字符串类型的字段。
froStuid是一个整数类型的字段,用于表示与该前端相关联的学生ID。
froDel也是一个整数类型的字段,用于表示该前端是否被删除。
这个类的作用是将数据库表"front"中的数据映射到Java对象中,方便对数据进行操作。
阅读全文