package cn.lihu.jh.module.ecg.webservice.ws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JHFWreq", propOrder = { "action", "rdn", "message" }) public class JHFWreq extends EnsRequest { protected String action; protected String rdn; protected String message; /** * ��ȡaction���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getAction() { return action; } /** * ����action���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setAction(String value) { this.action = value; } /** * ��ȡrdn���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getRdn() { return rdn; } /** * ����rdn���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setRdn(String value) { this.rdn = value; } /** * ��ȡmessage���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * ����message���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } }