123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.yihu.hos.models;
- import java.util.Date;
- /**
- * Created by lingfeng on 2016/8/8.
- */
- public class SystemServiceFlow {
- Integer id;
- String code;
- String name;
- String path;
- String chart;
- Integer valid;
- Date createDate;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- public String getChart() {
- return chart;
- }
- public void setChart(String chart) {
- this.chart = chart;
- }
- public Integer getValid() {
- return valid;
- }
- public void setValid(Integer valid) {
- this.valid = valid;
- }
- public Date getCreateDate() {
- return createDate;
- }
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- }
|