apzl_leasing/src/com/ample/esb/bean/amp/Application.java
2023-08-31 18:10:26 +08:00

18 lines
363 B
Java

package com.ample.esb.bean.amp;
import com.thoughtworks.xstream.annotations.XStreamAlias;
public class Application {
@XStreamAlias("APPLICANT2")
private Applicant2 applicant2;
public Applicant2 getApplicant2() {
return applicant2;
}
public void setApplicant2(Applicant2 applicant2) {
this.applicant2 = applicant2;
}
}