DfsjChange.java
707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.bsth.controller.realcontrol.dto;
/**
*
* @ClassName: DfsjChange
* @Description: TODO(待发调整)
* @author PanZhao
* @date 2016年10月31日 上午1:00:11
*
*/
public class DfsjChange {
private Long schId;
private String old_dfsj;
private String new_dfsj;
public Long getSchId() {
return schId;
}
public void setSchId(Long schId) {
this.schId = schId;
}
public String getOld_dfsj() {
return old_dfsj;
}
public void setOld_dfsj(String old_dfsj) {
this.old_dfsj = old_dfsj;
}
public String getNew_dfsj() {
return new_dfsj;
}
public void setNew_dfsj(String new_dfsj) {
this.new_dfsj = new_dfsj;
}
}