ConcernCount.java 706 Bytes
package com.lhcredit.project.webbusiness.domain;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.lhcredit.framework.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
@ApiModel(value = "关注数量")
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ConcernCount extends BaseEntity {

    private static final long serialVersionUID=1L;

    /** 数量 */
    @ApiModelProperty(value = "数量")
    private String count;
    /** 类别 */
    @ApiModelProperty(value = "数量")
    private String type;
    /** 用户id */
    @ApiModelProperty(value = "用户id")
    private String userId;
}