| | |
| | | package com.dg.core.db.gen.entity; |
| | | |
| | | 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 io.swagger.annotations.ApiModel; |
| | |
| | | /** |
| | | * 跳转链接类型(1.富文本2.微信文章) |
| | | */ |
| | | @ApiModelProperty("名称") |
| | | @ApiModelProperty(" 跳转链接类型(1.富文本2.微信文章)") |
| | | private String linkType; |
| | | |
| | | /** |
| | |
| | | * 创建人 |
| | | */ |
| | | @ApiModelProperty("创建人") |
| | | private Integer createUserId; |
| | | private String createUserId; |
| | | |
| | | /** |
| | | * 修改时间 |
| | |
| | | * 修改人 |
| | | */ |
| | | @ApiModelProperty("修改人") |
| | | private Integer updateUserId; |
| | | private String updateUserId; |
| | | |
| | | /** |
| | | * 部门名称 |
| | | */ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("部门名称") |
| | | private String departmentName; |
| | | |
| | | /** |
| | | * 修改人名称 |
| | | */ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("修改人名称") |
| | | private String updateUserName; |
| | | |
| | | /** |
| | | * 创建人名称 |
| | | */ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("创建人名称") |
| | | private String createUserName; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("是否能够删除1.可以删除修改 2.不能删除修改") |
| | | private Integer isDelete; |
| | | } |