123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 机构详情
- */
- public class D_M00024 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String deptName;//机构名称
- /**
- *机构名称
- */
- public void setDeptName(String deptName) {
- this.deptName=deptName;
- }
- /**
- *机构名称
- */
- public String getDeptName() {
- return this.deptName;
- }
- String deptCode;//机构编号
- /**
- *机构编号
- */
- public void setDeptCode(String deptCode) {
- this.deptCode=deptCode;
- }
- /**
- *机构编号
- */
- public String getDeptCode() {
- return this.deptCode;
- }
- String deptParent;//上级机构
- /**
- *上级机构
- */
- public void setDeptParent(String deptParent) {
- this.deptParent=deptParent;
- }
- /**
- *上级机构
- */
- public String getDeptParent() {
- return this.deptParent;
- }
- String deptType;//机构类型(1-公司 2-部门)
- /**
- *机构类型(1-公司 2-部门)
- */
- public void setDeptType(String deptType) {
- this.deptType=deptType;
- }
- /**
- *机构类型(1-公司 2-部门)
- */
- public String getDeptType() {
- return this.deptType;
- }
- String deptConn;//机构联系人
- /**
- *机构联系人
- */
- public void setDeptConn(String deptConn) {
- this.deptConn=deptConn;
- }
- /**
- *机构联系人
- */
- public String getDeptConn() {
- return this.deptConn;
- }
- String deptTel;//机构电话
- /**
- *机构电话
- */
- public void setDeptTel(String deptTel) {
- this.deptTel=deptTel;
- }
- /**
- *机构电话
- */
- public String getDeptTel() {
- return this.deptTel;
- }
- String deptAddress;//机构地址
- /**
- *机构地址
- */
- public void setDeptAddress(String deptAddress) {
- this.deptAddress=deptAddress;
- }
- /**
- *机构地址
- */
- public String getDeptAddress() {
- return this.deptAddress;
- }
- String deptDesc;//机构说明
- /**
- *机构说明
- */
- public void setDeptDesc(String deptDesc) {
- this.deptDesc=deptDesc;
- }
- /**
- *机构说明
- */
- public String getDeptDesc() {
- return this.deptDesc;
- }
- }
|