SysUserRole.java 827 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.bofeng.entity;
  2. import lombok.Data;
  3. import org.joda.time.DateTime;
  4. import java.io.Serializable;
  5. /**
  6. * sys_user_role
  7. * @author
  8. */
  9. @Data
  10. public class SysUserRole implements Serializable {
  11. /**
  12. * 用户角色关系ID
  13. */
  14. private Long urId;
  15. /**
  16. * 用户ID
  17. */
  18. private Long userId;
  19. /**
  20. * 角色ID:1居民,2业委会,3商家
  21. */
  22. private Integer roleId;
  23. /**
  24. * 属性ID,居民门牌ID,业委会ID
  25. */
  26. private Long propertyId;
  27. /**
  28. * 新增人
  29. */
  30. private Long userCreate;
  31. /**
  32. * 新增时间
  33. */
  34. private DateTime timeCreate;
  35. /**
  36. * 修改人
  37. */
  38. private Long userUpdate;
  39. /**
  40. * 修改时间
  41. */
  42. private DateTime timeUpdate;
  43. private static final long serialVersionUID = 1L;
  44. }