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

k.e.book.ddh.entity.CcIntegralCouponAddDTO 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="CcIntegralCouponAddDTO", description="CcIntegralCoupon")
public class CcIntegralCouponAddDTO implements Serializable{

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

    @ApiModelProperty(value = "用户id")
    private Integer userId;

    @ApiModelProperty(value = "用户名")
    private String username;

    @ApiModelProperty(value = "抵扣券名称")
    private String title;

    @ApiModelProperty(value = "来源:0=未知,1=空投")
    private Integer source;

    @ApiModelProperty(value = "类型")
    private Integer type;

    @ApiModelProperty(value = "面值")
    private Integer volume;

    @ApiModelProperty(value = "状态:-1=已过期,0=未使用,1=已使用")
    private Integer status;

    @ApiModelProperty(value = "生效时间")
    private Integer validityStart;

    @ApiModelProperty(value = "过期时间")
    private Integer validityEnd;

    @ApiModelProperty(value = "备注")
    private String remark;

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

    @ApiModelProperty(value = "更新时间")
    private Integer updatetime;

    @ApiModelProperty(value = "删除时间")
    private Integer deletetime;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy