| | |
| | | package com.panzhihua.service_user.model.dos; |
| | | |
| | | 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; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * Description 本地网格和浪潮的对码表 |
| | | * ClassName LcCompareCode |
| | | * @author manailin |
| | | * Description 本地网格和浪潮的对码表 ClassName LcCompareCode |
| | | * |
| | | * @author manailin |
| | | */ |
| | | @Data |
| | | @TableName("lc_compare_code_member") |
| | | @Data |
| | | @TableName("lc_compare_code_member") |
| | | public class LcCompareCodeMemberDO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | /**主键*/ |
| | | @TableId(type = IdType.INPUT) |
| | | private Long id; |
| | | /**本地网格ID*/ |
| | | private String localGridMemberId; |
| | | /**网格名称*/ |
| | | private String gridMemberName; |
| | | /**浪潮市平台网格ID*/ |
| | | private String lcGridMemberId; |
| | | /**浪潮市平台网格名称*/ |
| | | private String lcGridMemberName; |
| | | /**浪潮网格员绑定的用户ID*/ |
| | | private String lcBindUserId; |
| | | /**创建时间*/ |
| | | private Date createAt; |
| | | /**修改时间*/ |
| | | private Date updateAt; |
| | | private static final long serialVersionUID = 1L; |
| | | /** 主键 */ |
| | | @TableId(type = IdType.INPUT) |
| | | private Long id; |
| | | /** 本地网格ID */ |
| | | private String localGridMemberId; |
| | | /** 网格名称 */ |
| | | private String gridMemberName; |
| | | /** 浪潮市平台网格ID */ |
| | | private String lcGridMemberId; |
| | | /** 浪潮市平台网格名称 */ |
| | | private String lcGridMemberName; |
| | | /** 浪潮网格员绑定的用户ID */ |
| | | private String lcBindUserId; |
| | | /** 创建时间 */ |
| | | private Date createAt; |
| | | /** 修改时间 */ |
| | | private Date updateAt; |
| | | |
| | | } |