|
@@ -2,6 +2,7 @@ package com.usky.system.domain;
|
|
|
|
|
|
|
|
|
|
import com.usky.common.core.bean.BaseEntity;
|
|
import com.usky.common.core.bean.BaseEntity;
|
|
|
|
+import io.swagger.models.auth.In;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
@@ -19,7 +20,7 @@ public class SysNotice extends BaseEntity
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/** 公告ID */
|
|
/** 公告ID */
|
|
- private Long noticeId;
|
|
|
|
|
|
+ private Integer noticeId;
|
|
|
|
|
|
/** 公告标题 */
|
|
/** 公告标题 */
|
|
private String noticeTitle;
|
|
private String noticeTitle;
|
|
@@ -33,12 +34,12 @@ public class SysNotice extends BaseEntity
|
|
/** 公告状态(0正常 1关闭) */
|
|
/** 公告状态(0正常 1关闭) */
|
|
private String status;
|
|
private String status;
|
|
|
|
|
|
- public Long getNoticeId()
|
|
|
|
|
|
+ public Integer getNoticeId()
|
|
{
|
|
{
|
|
return noticeId;
|
|
return noticeId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setNoticeId(Long noticeId)
|
|
|
|
|
|
+ public void setNoticeId(Integer noticeId)
|
|
{
|
|
{
|
|
this.noticeId = noticeId;
|
|
this.noticeId = noticeId;
|
|
}
|
|
}
|