CopySupplyItemRequest.java
1.17 KB
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
44
45
46
47
48
49
50
51
52
53
54
package com.xiniunet.lecunstomization.request;
import com.xiniunet.framework.base.BaseRequest;
import javax.validation.constraints.NotNull;
/**
* Created by Administrator on 2016/12/28 0028.
*/
public class CopySupplyItemRequest extends BaseRequest{
@NotNull(message = "物料映射主键不能为空")
private Long id;
@NotNull(message = "供应链主键不能为空")
private Long supplychainId;
@NotNull(message = "是否同步下一条不能为空")
private Boolean autoNext;
private Integer syncPageNumber;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getSupplychainId() {
return supplychainId;
}
public void setSupplychainId(Long supplychainId) {
this.supplychainId = supplychainId;
}
public Boolean getAutoNext() {
return autoNext;
}
public void setAutoNext(Boolean autoNext) {
this.autoNext = autoNext;
}
public Integer getSyncPageNumber() {
return syncPageNumber;
}
public void setSyncPageNumber(Integer syncPageNumber) {
this.syncPageNumber = syncPageNumber;
}
}