123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package com.sinosoft.em.alert.duty.records.vo;
- public class EcmEmDuty {
- private String fd_objectid;
- private String name ;
- private String dept_names ;
- private String state ;
- private String duty_type ;
- private String oper_dept ;
- private String oper_name ;
- private String oper_time ;
- private String is_del ;
- private String updatedate ;
- private String oper_name_id;
- private String release;
- private String name_id;
- public EcmEmDuty() {
- // TODO Auto-generated constructor stub
- }
- @Override
- public String toString() {
- return "EcmEmDuty [fd_objectid=" + fd_objectid + ", name=" + name
- + ", dept_names=" + dept_names + ", state=" + state
- + ", duty_type=" + duty_type + ", oper_dept=" + oper_dept
- + ", oper_name=" + oper_name + ", oper_time=" + oper_time
- + ", is_del=" + is_del + ", updatedate=" + updatedate
- + ", oper_name_id=" + oper_name_id + ", release=" + release
- + ", name_id=" + name_id + "]";
- }
- public String getFd_objectid() {
- return fd_objectid;
- }
- public void setFd_objectid(String fd_objectid) {
- this.fd_objectid = fd_objectid;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getDept_names() {
- return dept_names;
- }
- public void setDept_names(String dept_names) {
- this.dept_names = dept_names;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getDuty_type() {
- return duty_type;
- }
- public void setDuty_type(String duty_type) {
- this.duty_type = duty_type;
- }
- public String getOper_dept() {
- return oper_dept;
- }
- public void setOper_dept(String oper_dept) {
- this.oper_dept = oper_dept;
- }
- public String getOper_name() {
- return oper_name;
- }
- public void setOper_name(String oper_name) {
- this.oper_name = oper_name;
- }
- public String getOper_time() {
- return oper_time;
- }
- public void setOper_time(String oper_time) {
- this.oper_time = oper_time;
- }
- public String getIs_del() {
- return is_del;
- }
- public void setIs_del(String is_del) {
- this.is_del = is_del;
- }
- public String getUpdatedate() {
- return updatedate;
- }
- public void setUpdatedate(String updatedate) {
- this.updatedate = updatedate;
- }
- public String getOper_name_id() {
- return oper_name_id;
- }
- public void setOper_name_id(String oper_name_id) {
- this.oper_name_id = oper_name_id;
- }
- public String getName_id() {
- return name_id;
- }
- public void setName_id(String name_id) {
- this.name_id = name_id;
- }
- public String getRelease() {
- return release;
- }
- public void setRelease(String release) {
- this.release = release;
- }
-
-
- }
|