| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.model.LoginUserModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | @Data |
| | | @ApiModel("访客申请信息表") |
| | | @TableName("`visits`") |
| | | public class Visits { |
| | | public class Visits extends LoginUserModel { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @ApiModelProperty(value = "主键", example = "1") |
| | |
| | | @ApiModelProperty(value = "来源类型:0=本系统;1=ERP", example = "1") |
| | | private Integer sourceType; |
| | | |
| | | @ApiModelProperty(value = "施工事由") |
| | | @ExcelColumn(name="施工事由") |
| | | private String constructionReason; |
| | | |
| | | @ApiModelProperty(value = "普通访客申请随访人员") |
| | | @TableField(exist = false) |
| | | private List<Visits> withUserList; |