All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k.e.book.ddh.entity.CcBoxProductAddDTO Maven / Gradle / Ivy


package k.e.book.ddh.entity;

import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.Date;
/**
 * @author kk
 * @date 2023-05-21 14:25
 */
@Data
@ApiModel(value="CcBoxProductAddDTO", description="CcBoxProduct")
public class CcBoxProductAddDTO implements Serializable{

    @ApiModelProperty(value = "id")
    private Integer id;

    @ApiModelProperty(value = "作者编号")
    private Integer authorId;

    @ApiModelProperty(value = "产品编号")
    private Integer productId;

    @ApiModelProperty(value = "数量")
    private Integer quantity;

    @ApiModelProperty(value = "已售数量")
    private Integer soldQty;

    @ApiModelProperty(value = "盲盒编号")
    private Integer boxId;

    @ApiModelProperty(value = "金额数量")
    private Long amount;

    @ApiModelProperty(value = "币种")
    private String priceunit;

    @ApiModelProperty(value = "标签")
    private String tag;

    @ApiModelProperty(value = "权重")
    private Integer weigh;

    @ApiModelProperty(value = "概率")
    private Integer probability;

    @ApiModelProperty(value = "创建时间")
    private Integer createtime;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy