CommUNBean.java 501 B

1234567891011121314151617181920212223242526
  1. package com.shkpr.service.alambizplugin.dto;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. @Getter
  5. @Setter
  6. public class CommUNBean {
  7. protected String uid = "";
  8. protected String name = "";
  9. public CommUNBean() {
  10. }
  11. public CommUNBean(String uid, String name) {
  12. this.uid = uid;
  13. this.name = name;
  14. }
  15. public CommUNBean(CommUNBean oOld) {
  16. if (oOld != null) {
  17. this.uid = oOld.getUid();
  18. this.name = oOld.getName();
  19. }
  20. }
  21. }