| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ExcelColumn(name="电子签认证时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date signDate; |
| | | @ApiModelProperty(value = "查询辨识 0权限范围内 1全部") |
| | | @TableField(exist = false) |
| | | private int queryFlag ; |
| | | @ApiModelProperty(value = "是否拥有权限 0无 1有") |
| | | @TableField(exist = false) |
| | | private int hasPerimission ; |
| | | |
| | | } |