package com.newfiber.api.pc.model.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; import io.swagger.annotations.ApiModel; import lombok.Data; import java.io.Serializable; /** * 应急队伍下属人员 * @ClassName WarnTeamSup * @Description TODO * @Author 张鸿志 * @Date sj2 19:12 * Version 1.0 **/ @Data @TableName("warn_team_sup") @ApiModel public class WarnTeamSup implements Serializable { @TableId(value = "sup_id",type = IdType.AUTO) private Integer supId; @TableField("sup_name") private String supName; @TableField("sup_job") private String supJob; @TableField("sup_phone") private String supPhone; @TableField("sup_plane") private String supPlane; @TableField("boss_id") private Integer bossId; @TableField("user_no") private String userNo; /** 1 领导 2普通成员 用于派发任务中的角色区分 解决一个部门多个领导的问题**/ @TableField("user_type") private Integer userType; /** * 组织类型 */ @TableField("org_type") private Integer orgType; /** * 组织名称 */ @TableField("org_name") private String orgName; }