|
|
|
@ -43,6 +43,14 @@ public class SysFile extends BaseBean {
|
|
|
|
|
@ApiParam(value ="文件所属模块")
|
|
|
|
|
private Integer fileSoftType;
|
|
|
|
|
|
|
|
|
|
public int getFileSoftTypeVal(){
|
|
|
|
|
if(fileSoftType == null){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fileSoftType.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name="USER_ID")
|
|
|
|
|
@ApiParam(value ="用户ID" , example = "-1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
@ -83,5 +91,4 @@ public class SysFile extends BaseBean {
|
|
|
|
|
@Column(name="DOWNLOAD_NUM")
|
|
|
|
|
@ApiParam(value ="下载次数" , example ="0")
|
|
|
|
|
private Integer downloadNum;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|