| | |
| | | package com.doumee.dao.vo; |
| | | |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Data |
| | | public class UserCenterVO { |
| | | |
| | | @ApiModelProperty(value = "发布任务总数 - 发单方使用") |
| | | private Integer releaseTaskTotal; |
| | | @ApiModelProperty(value = "openid") |
| | | private String openid; |
| | | |
| | | @ApiModelProperty(value = "待接单任务总数 - 发单方使用") |
| | | private Integer waitReceiveTotal; |
| | | @ApiModelProperty(value = "会员头像全路径") |
| | | private String fullCoverImage; |
| | | |
| | | @ApiModelProperty(value = "进行中任务总数 - 发单方使用") |
| | | private Integer doingTotal; |
| | | @ApiModelProperty(value = "会员头像半路径") |
| | | private String coverImage; |
| | | |
| | | @ApiModelProperty(value = "待评价任务总数 - 发单方使用") |
| | | private Integer waitCommentTotal; |
| | | @ApiModelProperty(value = "会员昵称") |
| | | private String nickName; |
| | | |
| | | @ApiModelProperty(value = "进行中任务数量 - 接单方使用") |
| | | private Integer taskingTotal; |
| | | @ApiModelProperty(value = "姓名") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "完成任务数量 - 接单方使用") |
| | | private Integer doneTotal; |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String telephone; |
| | | |
| | | @ApiModelProperty(value = "已接单任务数量 - 接单方使用") |
| | | private Integer receiveTotal; |
| | | @ApiModelProperty(value = "是否有消息") |
| | | private Boolean hasMessage; |
| | | |
| | | @ApiModelProperty(value = "服务介绍") |
| | | private String serverIntroduce; |
| | | @ApiModelProperty(value = "待支付订单数量") |
| | | private Integer waitPayCount; |
| | | |
| | | @ApiModelProperty(value = "关于我们") |
| | | private String aboutUs; |
| | | @ApiModelProperty(value = "待收货订单数量") |
| | | private Integer waitReceiveCount; |
| | | |
| | | @ApiModelProperty(value = "用户协议") |
| | | private String userAgreement; |
| | | @ApiModelProperty(value = "退款中订单数量") |
| | | private Integer refundingCount; |
| | | |
| | | @ApiModelProperty(value = "隐私协议") |
| | | private String privacyAgreement; |
| | | @ApiModelProperty(value = "我注册的门店主键(门店用户时返回)") |
| | | private Integer shopId; |
| | | |
| | | @ApiModelProperty(value = "客服电话 多个以,分割") |
| | | private String serverPhone; |
| | | @ApiModelProperty(value = "我注册的门店审核状态(门店用户时返回): 0=待审核 1=已通过 2=已驳回 3=已缴纳保证金") |
| | | private Integer shopAuditStatus; |
| | | |
| | | @ApiModelProperty(value = "我当前绑定的门店") |
| | | private String bindShopId; |
| | | |
| | | |
| | | |
| | | } |