xiejun
2023-09-11 fc4d1e17b9ed87e34835316d0e8b89feebe32be6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.vci.ubcs.code.bo;
 
import org.omg.CORBA.portable.IDLEntity;
 
public class AttributeValue implements IDLEntity {
    public String attrName = "";
    public String attrVal = "";
 
    public AttributeValue() {
    }
 
    public AttributeValue(String attrName, String attrVal) {
        this.attrName = attrName;
        this.attrVal = attrVal;
    }
}