| 1234567891011121314151617181920212223242526 |
- package com.shkpr.service.alambizplugin.dto;
- import lombok.Getter;
- import lombok.Setter;
- @Getter
- @Setter
- public class CommUNBean {
- protected String uid = "";
- protected String name = "";
- public CommUNBean() {
- }
- public CommUNBean(String uid, String name) {
- this.uid = uid;
- this.name = name;
- }
- public CommUNBean(CommUNBean oOld) {
- if (oOld != null) {
- this.uid = oOld.getUid();
- this.name = oOld.getName();
- }
- }
- }
|