CoverageInsuranceParty.java 654 字节
/**
  * Copyright 2018 bejson.com 
  */
package com.agent.xml.fhlsli.fhl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

/**
 * Auto-generated: 2018-06-09 15:18:23
 *
 * @author bejson.com (i@bejson.com)
 * @website http://www.bejson.com/java2pojo/
 */
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class CoverageInsuranceParty {

	@XmlElement(name = "Role",required = false)
	private String Role;

	public void setRole(String Role) {
		this.Role = Role;
	}

	public String getRole() {
		return Role;
	}

}