| | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.Size; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ltkj.common.core.domain.BaseEntity; |
| | | import com.ltkj.common.xss.Xss; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 通知公告表 sys_notice |
| | |
| | | */ |
| | | private String status; |
| | | |
| | | @TableField(exist = false) |
| | | private String deptId; |
| | | |
| | | @TableField(exist = false) |
| | | private List<String> userIds; |
| | | |
| | | public String getDeptId() { |
| | | return deptId; |
| | | } |
| | | |
| | | public void setDeptId(String deptId) { |
| | | this.deptId = deptId; |
| | | } |
| | | |
| | | public List<String> getUserIds() { |
| | | return userIds; |
| | | } |
| | | |
| | | public void setUserIds(List<String> userIds) { |
| | | this.userIds = userIds; |
| | | } |
| | | |
| | | public Long getNoticeId() { |
| | | return noticeId; |
| | | } |