| | |
| | | package com.panzhihua.service_grid.model.dos; |
| | | |
| | | import java.util.*; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; |
| | | import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | |
| | |
| | | * */ |
| | | @Data |
| | | @TableName("event_visiting_tasks") |
| | | @EncryptDecryptClass |
| | | public class EventVisitingTasksDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | /** |
| | | * 需走访人电话 列: visiter_tele |
| | | */ |
| | | @EncryptDecryptField |
| | | private String visiterTele; |
| | | /** |
| | | * 需走访人居住地址 列: visiter_address |
| | |
| | | */ |
| | | private Integer outOrLocal; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 网格ID |
| | | */ |
| | | private Long gridId; |
| | | /** |
| | | * 是否已经上传浪潮服务器市平台 |
| | | */ |
| | | private Boolean lcUpload; |
| | | } |