|
|
|
@ -2,7 +2,10 @@ package com.qniao.dam.api.query.marriagebounty.user.response; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
|
|
|
import com.qniao.dam.domian.aggregate.marriagebount.constant.MarriageBountyOrderDisplay; |
|
|
|
import com.qniao.dam.domian.aggregate.marriagebount.constant.MarriageBountyOrderType; |
|
|
|
import com.qniao.dam.domian.aggregate.marriagebount.constant.MarriageBountyOrderVersion; |
|
|
|
import com.qniao.dam.domian.aggregate.marriagebount.constant.PublishIdentityTypeEnum; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
@ -15,6 +18,13 @@ public class UserGetMarriageBountyOrderProductInfoVo { |
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
|
private Long marriageBountyOrderId; |
|
|
|
|
|
|
|
@ApiModelProperty("用户标识") |
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
|
private Long userId; |
|
|
|
|
|
|
|
@ApiModelProperty("悬赏招亲发布者类型") |
|
|
|
private PublishIdentityTypeEnum publishType; |
|
|
|
|
|
|
|
@ApiModelProperty("悬赏招亲类型") |
|
|
|
private MarriageBountyOrderType type; |
|
|
|
|
|
|
|
|