Workflow.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_Workflow"
  6.  */
  7. public class Workflow {
  8. /**
  9.  * @hibernate.id
  10.  *  generator-class="native"
  11.  */
  12. private int id;
  13. /**
  14.  * 流程名称
  15.  * @hibernate.property
  16.  *  unique="true"
  17.  */
  18. private String name;
  19. /**
  20.  * 流程定义文件
  21.  * @hibernate.property
  22.  *  type="binary"
  23.  *  length="99999999"
  24.  */
  25. private byte[] processDefinition;
  26. /**
  27.  * 流程定义图片
  28.  * @hibernate.property
  29.  *  type="binary"
  30.  *  length="99999999"
  31.  */
  32. private byte[] processImage;
  33. public byte[] getProcessDefinition() {
  34. return processDefinition;
  35. }
  36. public void setProcessDefinition(byte[] processDefinition) {
  37. this.processDefinition = processDefinition;
  38. }
  39. public int getId() {
  40. return id;
  41. }
  42. public void setId(int id) {
  43. this.id = id;
  44. }
  45. public String getName() {
  46. return name;
  47. }
  48. public void setName(String name) {
  49. this.name = name;
  50. }
  51. public byte[] getProcessImage() {
  52. return processImage;
  53. }
  54. public void setProcessImage(byte[] pic) {
  55. this.processImage = pic;
  56. }
  57. }