package com.example.client.entity; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * 到公司层级 */ @Data public class CompanyLogEntity extends TenantLogEntity implements ICompanyLevel { @ApiModelProperty(value = "公司id") @TableField(fill = FieldFill.INSERT) private Long companyId; }