| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 | package com.miniframe.model.system;import com.miniframe.system.MiniserviceBaseModel;import java.io.Serializable;import javax.persistence.*;@Table(name = "sys_department")public class SysDepartment extends MiniserviceBaseModel implements Serializable {    /**     * 机构编码     */    @Id    private String deptcode;    /**     * 机构名称     */    private String deptname;    /**     * 上级机构     */    private String parent;    /**     * 机构类型 : 1公证处,0运营     */    private String depttype;    /**     * 联系人     */    private String deptconn;    /**     * 地址     */    private String deptaddr;    /**     * 电话     */    private String depttell;    /**     * 备注 : 备注     */    private String remarks;    /**     * 是否允许删除     */    private String enabledel;    /**     * 特殊功能     */    private String deptfunc;    private static final long serialVersionUID = 1L;    /**     * 获取机构编码     *     * @return deptcode - 机构编码     */    public String getDeptcode() {        return deptcode;    }    /**     * 设置机构编码     *     * @param deptcode 机构编码     */    public void setDeptcode(String deptcode) {        this.deptcode = deptcode == null ? null : deptcode.trim();    }    /**     * 获取机构名称     *     * @return deptname - 机构名称     */    public String getDeptname() {        return deptname;    }    /**     * 设置机构名称     *     * @param deptname 机构名称     */    public void setDeptname(String deptname) {        this.deptname = deptname == null ? null : deptname.trim();    }    /**     * 获取上级机构     *     * @return parent - 上级机构     */    public String getParent() {        return parent;    }    /**     * 设置上级机构     *     * @param parent 上级机构     */    public void setParent(String parent) {        this.parent = parent == null ? null : parent.trim();    }    /**     * 获取机构类型 : 1公证处,0运营     *     * @return depttype - 机构类型 : 1公证处,0运营     */    public String getDepttype() {        return depttype;    }    /**     * 设置机构类型 : 1公证处,0运营     *     * @param depttype 机构类型 : 1公证处,0运营     */    public void setDepttype(String depttype) {        this.depttype = depttype == null ? null : depttype.trim();    }    /**     * 获取联系人     *     * @return deptconn - 联系人     */    public String getDeptconn() {        return deptconn;    }    /**     * 设置联系人     *     * @param deptconn 联系人     */    public void setDeptconn(String deptconn) {        this.deptconn = deptconn == null ? null : deptconn.trim();    }    /**     * 获取地址     *     * @return deptaddr - 地址     */    public String getDeptaddr() {        return deptaddr;    }    /**     * 设置地址     *     * @param deptaddr 地址     */    public void setDeptaddr(String deptaddr) {        this.deptaddr = deptaddr == null ? null : deptaddr.trim();    }    /**     * 获取电话     *     * @return depttell - 电话     */    public String getDepttell() {        return depttell;    }    /**     * 设置电话     *     * @param depttell 电话     */    public void setDepttell(String depttell) {        this.depttell = depttell == null ? null : depttell.trim();    }    /**     * 获取备注 : 备注     *     * @return remarks - 备注 : 备注     */    public String getRemarks() {        return remarks;    }    /**     * 设置备注 : 备注     *     * @param remarks 备注 : 备注     */    public void setRemarks(String remarks) {        this.remarks = remarks == null ? null : remarks.trim();    }    /**     * 获取是否允许删除     *     * @return enabledel - 是否允许删除     */    public String getEnabledel() {        return enabledel;    }    /**     * 设置是否允许删除     *     * @param enabledel 是否允许删除     */    public void setEnabledel(String enabledel) {        this.enabledel = enabledel == null ? null : enabledel.trim();    }    /**     * 获取特殊功能     *     * @return deptfunc - 特殊功能     */    public String getDeptfunc() {        return deptfunc;    }    /**     * 设置特殊功能     *     * @param deptfunc 特殊功能     */    public void setDeptfunc(String deptfunc) {        this.deptfunc = deptfunc == null ? null : deptfunc.trim();    }}
 |