New file |
| | |
| | | package com.cl.pojo.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @ApiModel("机构表") |
| | | @TableName("t_institution") |
| | | public class Institution { |
| | | @ApiModelProperty(value = "机构ID") |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "区县,1-东区,2-西区,3-仁和区,4-米易县,5-盐边县") |
| | | private Integer county; |
| | | |
| | | @ApiModelProperty(value = "机构类型,1-残疾人定点康复机构,2-残疾人友好医疗机构") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "机构名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "详细地址") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String phone; |
| | | |
| | | @ApiModelProperty(value = "删除标志(0代表存在 1代表删除)") |
| | | private Integer delFlag; |
| | | |
| | | @ApiModelProperty(value = "创建者") |
| | | private Integer createBy; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "更新者") |
| | | private Integer updateBy; |
| | | |
| | | @ApiModelProperty(value = "更新时间") |
| | | private LocalDateTime updateTime; |
| | | } |