xiaoyong931011
2023-04-08 aa5f5c17a3c92461d63025606ae3ea3fe281d5ea
src/main/java/cc/mrbird/febs/mall/vo/MallMemberVo.java
@@ -54,4 +54,46 @@
    public static final int ACCOUNTSTATUS_Y = 1;
    public static final int ACCOUNTSTATUS_N = 2;
    @ApiModelProperty(value = "是否设置收款方式", example = "1是2否")
    private Integer hasPayment = 2;
    @ApiModelProperty(value = "是否设置交易密码", example = "1是2否")
    private Integer hasTradePwd = 2;
    @ApiModelProperty(value = "绑定手机号")
    private String bindPhone;
    @ApiModelProperty(value = "累计消费")
    private BigDecimal totalCost;
    @ApiModelProperty(value = "赠送积分")
    private BigDecimal score;
    @ApiModelProperty(value = "抽奖积分")
    private BigDecimal prizeScore;
    /**
     * 董事
     */
    @ApiModelProperty(value = "是否为董事 1-是 2-否")
    private Integer director;
    /**
     * 店长
     */
    @ApiModelProperty(value = "是否店长 1-是 2-否")
    private Integer storeMaster;
    @ApiModelProperty(value = "补贴额度")
    private BigDecimal totalScore;
    @ApiModelProperty(value = "贡献点")
    private Integer star;
    @ApiModelProperty(value = "凭证数量")
    private BigDecimal voucherCnt;
    @ApiModelProperty(value = "内转标识 1:开启 2:关闭")
    private Integer insideWith;
}