InputUserClueTransferBo.java 680 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.goafanti.customer.bo;
  2. public class InputUserClueTransferBo {
  3. private String uid;
  4. private String transferId;
  5. /**
  6. * 0=转交, 1退回线索客户,2=移除线索客户,3=领取线索客户
  7. */
  8. private Integer type;
  9. public String getUid() {
  10. return uid;
  11. }
  12. public void setUid(String uid) {
  13. this.uid = uid;
  14. }
  15. public String getTransferId() {
  16. return transferId;
  17. }
  18. public void setTransferId(String transferId) {
  19. this.transferId = transferId;
  20. }
  21. public Integer getType() {
  22. return type;
  23. }
  24. public void setType(Integer type) {
  25. this.type = type;
  26. }
  27. }