ActivityUserKey.java 606 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.goafanti.common.model;
  2. public class ActivityUserKey {
  3. /**
  4. * 活动id
  5. */
  6. private Long aid;
  7. /**
  8. * 用户ID
  9. */
  10. private String uid;
  11. public ActivityUserKey(){
  12. }
  13. public ActivityUserKey(Long aid, String uid){
  14. this.aid = aid;
  15. this.uid = uid;
  16. }
  17. public Long getAid() {
  18. return aid;
  19. }
  20. public void setAid(Long aid) {
  21. this.aid = aid;
  22. }
  23. public String getUid() {
  24. return uid;
  25. }
  26. public void setUid(String uid) {
  27. this.uid = uid;
  28. }
  29. }