Parameter.java 2.4 KB
Newer Older
Z
zhuangqian 已提交
1
/**
Z
update  
zhuangqian 已提交
2
 * Copyright (c) 2015-2017, Chill Zhuang 庄骞 (smallchill@163.com).
Z
zhuangqian 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
S
smallchill 已提交
16
package org.springblade.system.model;
Z
zhuangqian 已提交
17 18 19 20 21

import org.beetl.sql.core.annotatoin.AutoID;
import org.beetl.sql.core.annotatoin.SeqID;
import org.beetl.sql.core.annotatoin.Table;

S
smallchill 已提交
22 23
import org.springblade.core.annotation.BindID;
import org.springblade.core.base.model.BaseModel;
Z
zhuangqian 已提交
24

25
@Table(name = "blade_parameter")
Z
zhuangqian 已提交
26 27
@BindID(name = "id")
@SuppressWarnings("serial")
28 29 30 31
/**
 * 参数表
 * @author zhuangqian
 */
Z
zhuangqian 已提交
32
public class Parameter extends BaseModel {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    /**
     * 主键
     */
	private Integer id;
    /**
     * 参数编号
     */
	private String code;
    /**
     * 参数名
     */
	private String name;
    /**
     * 排序号
     */
	private Integer num;
    /**
     * 参数值
     */
	private String para;
    /**
     * 状态
     */
	private Integer status;
    /**
     * 备注
     */
	private String tips;
    /**
     * 版本号
     */
	private Integer version;
Z
zhuangqian 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

	@AutoID
	@SeqID(name = "SEQ_PARAMETER")
	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 Integer getNum() {
		return num;
	}

	public void setNum(Integer num) {
		this.num = num;
	}

	public String getPara() {
		return para;
	}

	public void setPara(String para) {
		this.para = para;
	}

	public Integer getStatus() {
		return status;
	}

	public void setStatus(Integer status) {
		this.status = status;
	}

	public String getTips() {
		return tips;
	}

	public void setTips(String tips) {
		this.tips = tips;
	}

	public Integer getVersion() {
		return version;
	}

	public void setVersion(Integer version) {
		this.version = version;
	}

}