| package cc.mrbird.febs.mall.entity; | 
|   | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
|   | 
| //默认团长 | 
| @Data | 
| @TableName("mall_leader_default") | 
| public class MallLeaderDefault { | 
|     @TableId(value = "id",type = IdType.AUTO) | 
|     private Long id; | 
|   | 
|     private Long memberId; | 
|   | 
|     private String uniqueCode; | 
|   | 
| } |