| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | * @author ojq |
| | | * @since 2023-03-14 |
| | | */ |
| | | @Data |
| | | @TableName("z_stay_out") |
| | | public class ZStayOut implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Integer userId; |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 拥有外籍、境外永久居留权或者长期居留许可的情况 |
| | | * 拥有外籍、境外永久居留权或者长期居留许可的情况,1:有、0:没有 |
| | | */ |
| | | private String content; |
| | | private Integer content; |
| | | |
| | | /** |
| | | * 证件号码 |
| | | */ |
| | | private String idNo; |
| | | |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(Integer userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | public String getIdNo() { |
| | | return idNo; |
| | | } |
| | | |
| | | public void setIdNo(String idNo) { |
| | | this.idNo = idNo; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ZStayOut{" + |
| | | "id=" + id + |
| | | ", userId=" + userId + |
| | | ", content=" + content + |
| | | ", idNo=" + idNo + |
| | | "}"; |
| | | } |
| | | } |