xiaoyong931011
2022-09-07 11edfa154a6f6c48d06de201315b25978601229c
src/main/java/cc/mrbird/febs/mall/entity/MallTeamLeader.java
@@ -15,11 +15,12 @@
    //用户ID
    private Long memberId;
    //申请状态 1:审核通过 2:审核不通过 3:申请中
    //申请状态 1:审核通过 2:审核不通过 3:申请中 4:已取消
    private Integer state;
    public static final Integer STATE_YES = 1;
    public static final Integer STATE_NO = 2;
    public static final Integer STATE_ING = 3;
    public static final Integer STATE_CANCEL = 4;
    //团长姓名
    private String name;
    //手机号码
@@ -46,4 +47,6 @@
    @TableField(exist = false)
    private Double distance;
    private String wxCodeImg;
}