package com.panzhihua.service_dangjian.model.dos; import java.io.Serializable; import java.util.Date; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 服务团队 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2021-01-21 17:36 **/ @Data @TableName("com_pb_service_team") public class ComPbServiceTeamDO implements Serializable { private static final long serialVersionUID = 1L; /** * id */ @TableId(type = IdType.ASSIGN_ID) private Long id; /** * 姓名 */ private String name; /** * 职位 */ private String job; /** * 职位2 */ private String jobTwo; /** * 岗位职责 */ private String jobResponsibilities; /** * 照片 */ private String url; /** * create_at */ @TableField(fill = FieldFill.INSERT) private Date createAt; /** * 社区id */ private Long communityId; /** * 电话 */ private String phone; /** * 是否注册 */ private Integer isReg; /** * 身份证号码 */ private String cardNo; /** * 所属物业公司Id * */ private Long propertyId; private Integer type; }