1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.huiju.estateagents.property.model;
-
- 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 lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
-
- import javax.validation.constraints.NotBlank;
- import java.io.Serializable;
- import java.time.LocalDateTime;
-
- /**
- * <p>
- * 物业号码表
- * </p>
- *
- * @author jobob
- * @since 2019-03-05
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("tp_announcement_tel")
- public class AnnouncementTel implements Serializable {
-
- private static final long serialVersionUID = 1L;
-
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
-
- private Integer orgId;
-
- /**
- * 小区id
- */
- private Integer communityId;
-
- /**
- * 电话名称
- */
- @NotBlank(message = "请输入名称")
- private String name;
-
- @NotBlank(message = "请输入号码")
- private String tel;
-
- private String remark;
-
- /**
- * 物业类型
- */
- private String type;
-
- /**
- * 创建人
- */
- private Integer createUser;
-
- /**
- * 创建时间
- */
- private LocalDateTime createDate;
-
- /**
- * 更新人
- */
- private Integer updateUser;
-
- /**
- * 更新时间
- */
- private LocalDateTime updateDate;
-
- /**
- * 更新人
- */
- @TableField(exist = false)
- private String updateName;
-
- }
|