FieldInput.java
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. package com.bjsxt.oa.model;
  2. /**
  3.  * 表单的输入形式
  4.  * @author Administrator
  5.  * @hibernate.class table="T_FieldInput"
  6.  */
  7. public class FieldInput {
  8. /**
  9.  * @hibernate.id
  10.  *  generator-class="native"
  11.  */
  12. private int id;
  13. /**
  14.  * 页面表单元素的名称,如:
  15.  * 文本输入框、下拉框、文件等等
  16.  * @hibernate.property
  17.  */
  18. private String name;
  19. /**
  20.  * 针对这个页面表单元素,如何呈现为HTML代码
  21.  * 通过模版来实现!
  22.  * @hibernate.property
  23.  */
  24. private String template;
  25. public int getId() {
  26. return id;
  27. }
  28. public void setId(int id) {
  29. this.id = id;
  30. }
  31. public String getName() {
  32. return name;
  33. }
  34. public void setName(String name) {
  35. this.name = name;
  36. }
  37. public String getTemplate() {
  38. return template;
  39. }
  40. public void setTemplate(String template) {
  41. this.template = template;
  42. }
  43. }