package com.datao.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import io.swagger.v3.oas.models.security.SecurityScheme; import lombok.Data; @Data public class PredMatch { @TableId(type = IdType.INPUT) Integer mid; Integer lid; String lname; Integer htid; String hname; Integer gtid; String gname; Integer time; Integer stage; Integer state; Integer pred; Integer wjstate; @TableField(exist = false) Integer hhgoals; //上半场主队进球数 @TableField(exist = false) Integer hggoals; //上半场客队进球数 @TableField(exist = false) Integer fhgoals; //全场主队进球数 @TableField(exist = false) Integer fggoals; //全场客队进球数 }