package com.xcong.excoin.modules.member.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; /** * @author wzy * @date 2020-11-09 **/ @Data @TableName("trc_address") public class TrcAddressEntity { public static final Integer SYSTEM_FLAG_YJS = 1; public static final Integer SYSTEM_FLAG_SL = 2; @TableId(type = IdType.AUTO) private Long id; private String address; private int isUse; private Long memberId; private Integer systemFlag; }