57 lines
1.3 KiB
Java
57 lines
1.3 KiB
Java
package com.rzdata.web.domain;
|
|
|
|
import com.rzdata.common.annotation.Excel;
|
|
import com.rzdata.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
/**
|
|
* 工具下载统计对象 t_download_count
|
|
*
|
|
* @author 潘驰春
|
|
* @date 2024-08-31
|
|
*/
|
|
@Data
|
|
public class DownloadCount extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键 */
|
|
private String id;
|
|
|
|
/** 工具id */
|
|
@Excel(name = "业务id")
|
|
private String businessId;
|
|
/** 业务类型 */
|
|
private String businessType;
|
|
/** 附件id */
|
|
private String attId;
|
|
/** 附件名称 */
|
|
private String attName;
|
|
|
|
/** 创建人id */
|
|
@Excel(name = "创建人id")
|
|
private String createById;
|
|
|
|
/** 更新人id */
|
|
@Excel(name = "更新人id")
|
|
private String updateById;
|
|
|
|
/** 工具code */
|
|
private String toolCode;
|
|
/** 工具名称 */
|
|
private String toolName;
|
|
/** 工具下载数量 */
|
|
private String toolDownNum;
|
|
private String nickName;
|
|
|
|
/** 文档code */
|
|
private String docCode;
|
|
/** 文档名称 */
|
|
private String docName;
|
|
/** 文档下载数量 */
|
|
private String docDownNum;
|
|
|
|
}
|