12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.bizmatics.model.system;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- /**
- * 用户和岗位关联 sys_user_post
- *
- * @author ruoyi
- */
- public class SysUserPost
- {
- /** 用户ID */
- private Long userId;
-
- /** 岗位ID */
- private Long postId;
- public Long getUserId()
- {
- return userId;
- }
- public void setUserId(Long userId)
- {
- this.userId = userId;
- }
- public Long getPostId()
- {
- return postId;
- }
- public void setPostId(Long postId)
- {
- this.postId = postId;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("userId", getUserId())
- .append("postId", getPostId())
- .toString();
- }
- }
|