d20750a27b738a0fdf05ee6afbe7a892a1d20f7a.svn-base 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. package cn.com.goldenwater.dcproj.webService.login;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlSchemaType;
  5. import javax.xml.bind.annotation.XmlType;
  6. import javax.xml.datatype.XMLGregorianCalendar;
  7. /**
  8. * <p>roleInfo complex type的 Java 类。
  9. *
  10. * <p>以下模式片段指定包含在此类中的预期内容。
  11. *
  12. * <pre>
  13. * &lt;complexType name="roleInfo"&gt;
  14. * &lt;complexContent&gt;
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  16. * &lt;sequence&gt;
  17. * &lt;element name="jurdAreaType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  18. * &lt;element name="modifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  19. * &lt;element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  20. * &lt;element name="orgCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  21. * &lt;element name="orgJurd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  22. * &lt;element name="orgName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  23. * &lt;element name="roleCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  24. * &lt;element name="roleDesc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  25. * &lt;element name="roleId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  26. * &lt;element name="roleName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  27. * &lt;element name="roleType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  28. * &lt;element name="scode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  29. * &lt;element name="sname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  30. * &lt;element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  31. * &lt;element name="ts" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/&gt;
  32. * &lt;/sequence&gt;
  33. * &lt;/restriction&gt;
  34. * &lt;/complexContent&gt;
  35. * &lt;/complexType&gt;
  36. * </pre>
  37. */
  38. @XmlAccessorType(XmlAccessType.FIELD)
  39. @XmlType(name = "roleInfo", propOrder = {
  40. "jurdAreaType",
  41. "modifier",
  42. "note",
  43. "orgCode",
  44. "orgJurd",
  45. "orgName",
  46. "roleCode",
  47. "roleDesc",
  48. "roleId",
  49. "roleName",
  50. "roleType",
  51. "scode",
  52. "sname",
  53. "status",
  54. "ts"
  55. })
  56. public class RoleInfo {
  57. protected String jurdAreaType;
  58. protected String modifier;
  59. protected String note;
  60. protected String orgCode;
  61. protected String orgJurd;
  62. protected String orgName;
  63. protected String roleCode;
  64. protected String roleDesc;
  65. protected String roleId;
  66. protected String roleName;
  67. protected String roleType;
  68. protected String scode;
  69. protected String sname;
  70. protected String status;
  71. @XmlSchemaType(name = "dateTime")
  72. protected XMLGregorianCalendar ts;
  73. /**
  74. * 获取jurdAreaType属性的值。
  75. *
  76. * @return possible object is
  77. * {@link String }
  78. */
  79. public String getJurdAreaType() {
  80. return jurdAreaType;
  81. }
  82. /**
  83. * 设置jurdAreaType属性的值。
  84. *
  85. * @param value allowed object is
  86. * {@link String }
  87. */
  88. public void setJurdAreaType(String value) {
  89. this.jurdAreaType = value;
  90. }
  91. /**
  92. * 获取modifier属性的值。
  93. *
  94. * @return possible object is
  95. * {@link String }
  96. */
  97. public String getModifier() {
  98. return modifier;
  99. }
  100. /**
  101. * 设置modifier属性的值。
  102. *
  103. * @param value allowed object is
  104. * {@link String }
  105. */
  106. public void setModifier(String value) {
  107. this.modifier = value;
  108. }
  109. /**
  110. * 获取note属性的值。
  111. *
  112. * @return possible object is
  113. * {@link String }
  114. */
  115. public String getNote() {
  116. return note;
  117. }
  118. /**
  119. * 设置note属性的值。
  120. *
  121. * @param value allowed object is
  122. * {@link String }
  123. */
  124. public void setNote(String value) {
  125. this.note = value;
  126. }
  127. /**
  128. * 获取orgCode属性的值。
  129. *
  130. * @return possible object is
  131. * {@link String }
  132. */
  133. public String getOrgCode() {
  134. return orgCode;
  135. }
  136. /**
  137. * 设置orgCode属性的值。
  138. *
  139. * @param value allowed object is
  140. * {@link String }
  141. */
  142. public void setOrgCode(String value) {
  143. this.orgCode = value;
  144. }
  145. /**
  146. * 获取orgJurd属性的值。
  147. *
  148. * @return possible object is
  149. * {@link String }
  150. */
  151. public String getOrgJurd() {
  152. return orgJurd;
  153. }
  154. /**
  155. * 设置orgJurd属性的值。
  156. *
  157. * @param value allowed object is
  158. * {@link String }
  159. */
  160. public void setOrgJurd(String value) {
  161. this.orgJurd = value;
  162. }
  163. /**
  164. * 获取orgName属性的值。
  165. *
  166. * @return possible object is
  167. * {@link String }
  168. */
  169. public String getOrgName() {
  170. return orgName;
  171. }
  172. /**
  173. * 设置orgName属性的值。
  174. *
  175. * @param value allowed object is
  176. * {@link String }
  177. */
  178. public void setOrgName(String value) {
  179. this.orgName = value;
  180. }
  181. /**
  182. * 获取roleCode属性的值。
  183. *
  184. * @return possible object is
  185. * {@link String }
  186. */
  187. public String getRoleCode() {
  188. return roleCode;
  189. }
  190. /**
  191. * 设置roleCode属性的值。
  192. *
  193. * @param value allowed object is
  194. * {@link String }
  195. */
  196. public void setRoleCode(String value) {
  197. this.roleCode = value;
  198. }
  199. /**
  200. * 获取roleDesc属性的值。
  201. *
  202. * @return possible object is
  203. * {@link String }
  204. */
  205. public String getRoleDesc() {
  206. return roleDesc;
  207. }
  208. /**
  209. * 设置roleDesc属性的值。
  210. *
  211. * @param value allowed object is
  212. * {@link String }
  213. */
  214. public void setRoleDesc(String value) {
  215. this.roleDesc = value;
  216. }
  217. /**
  218. * 获取roleId属性的值。
  219. *
  220. * @return possible object is
  221. * {@link String }
  222. */
  223. public String getRoleId() {
  224. return roleId;
  225. }
  226. /**
  227. * 设置roleId属性的值。
  228. *
  229. * @param value allowed object is
  230. * {@link String }
  231. */
  232. public void setRoleId(String value) {
  233. this.roleId = value;
  234. }
  235. /**
  236. * 获取roleName属性的值。
  237. *
  238. * @return possible object is
  239. * {@link String }
  240. */
  241. public String getRoleName() {
  242. return roleName;
  243. }
  244. /**
  245. * 设置roleName属性的值。
  246. *
  247. * @param value allowed object is
  248. * {@link String }
  249. */
  250. public void setRoleName(String value) {
  251. this.roleName = value;
  252. }
  253. /**
  254. * 获取roleType属性的值。
  255. *
  256. * @return possible object is
  257. * {@link String }
  258. */
  259. public String getRoleType() {
  260. return roleType;
  261. }
  262. /**
  263. * 设置roleType属性的值。
  264. *
  265. * @param value allowed object is
  266. * {@link String }
  267. */
  268. public void setRoleType(String value) {
  269. this.roleType = value;
  270. }
  271. /**
  272. * 获取scode属性的值。
  273. *
  274. * @return possible object is
  275. * {@link String }
  276. */
  277. public String getScode() {
  278. return scode;
  279. }
  280. /**
  281. * 设置scode属性的值。
  282. *
  283. * @param value allowed object is
  284. * {@link String }
  285. */
  286. public void setScode(String value) {
  287. this.scode = value;
  288. }
  289. /**
  290. * 获取sname属性的值。
  291. *
  292. * @return possible object is
  293. * {@link String }
  294. */
  295. public String getSname() {
  296. return sname;
  297. }
  298. /**
  299. * 设置sname属性的值。
  300. *
  301. * @param value allowed object is
  302. * {@link String }
  303. */
  304. public void setSname(String value) {
  305. this.sname = value;
  306. }
  307. /**
  308. * 获取status属性的值。
  309. *
  310. * @return possible object is
  311. * {@link String }
  312. */
  313. public String getStatus() {
  314. return status;
  315. }
  316. /**
  317. * 设置status属性的值。
  318. *
  319. * @param value allowed object is
  320. * {@link String }
  321. */
  322. public void setStatus(String value) {
  323. this.status = value;
  324. }
  325. /**
  326. * 获取ts属性的值。
  327. *
  328. * @return possible object is
  329. * {@link XMLGregorianCalendar }
  330. */
  331. public XMLGregorianCalendar getTs() {
  332. return ts;
  333. }
  334. /**
  335. * 设置ts属性的值。
  336. *
  337. * @param value allowed object is
  338. * {@link XMLGregorianCalendar }
  339. */
  340. public void setTs(XMLGregorianCalendar value) {
  341. this.ts = value;
  342. }
  343. }