| | |
| | | }
|
| | |
|
| | | // 签到事件主键
|
| | | private Integer id;
|
| | | private String id;
|
| | | // 呼叫时间
|
| | | private Date callDt;
|
| | | private String callDt;
|
| | | // 呼叫人员主键
|
| | | private Integer callerPersonId;
|
| | | private String callerPersonId;
|
| | | // 被呼叫人员主键
|
| | | private Integer calleePersonId;
|
| | | private String calleePersonId;
|
| | | // 呼叫发生所在设备(地点)
|
| | | private Integer placeId;
|
| | | private String placeId;
|
| | |
|
| | | /**
|
| | | * Get 签到事件主键
|
| | | */
|
| | | public Integer getId() {
|
| | | public String getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 签到事件主键
|
| | | */
|
| | | public void setId(Integer id) {
|
| | | public void setId(String id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 呼叫时间
|
| | | */
|
| | | public Date getCallDt() {
|
| | | public String getCallDt() {
|
| | | return callDt;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 呼叫时间
|
| | | */
|
| | | public void setCallDt(Date callDt) {
|
| | | public void setCallDt(String callDt) {
|
| | | this.callDt = callDt;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 呼叫人员主键
|
| | | */
|
| | | public Integer getCallerPersonId() {
|
| | | public String getCallerPersonId() {
|
| | | return callerPersonId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 呼叫人员主键
|
| | | */
|
| | | public void setCallerPersonId(Integer callerPersonId) {
|
| | | public void setCallerPersonId(String callerPersonId) {
|
| | | this.callerPersonId = callerPersonId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 被呼叫人员主键
|
| | | */
|
| | | public Integer getCalleePersonId() {
|
| | | public String getCalleePersonId() {
|
| | | return calleePersonId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 被呼叫人员主键
|
| | | */
|
| | | public void setCalleePersonId(Integer calleePersonId) {
|
| | | public void setCalleePersonId(String calleePersonId) {
|
| | | this.calleePersonId = calleePersonId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 呼叫发生所在设备(地点)
|
| | | */
|
| | | public Integer getPlaceId() {
|
| | | public String getPlaceId() {
|
| | | return placeId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 呼叫发生所在设备(地点)
|
| | | */
|
| | | public void setPlaceId(Integer placeId) {
|
| | | public void setPlaceId(String placeId) {
|
| | | this.placeId = placeId;
|
| | | }
|
| | |
|