pull/451/head
starrysky 2019-08-17 10:44:01 +08:00
parent 3bb3bb34ff
commit f479ba934c
1 changed files with 3 additions and 0 deletions

View File

@ -97,6 +97,9 @@ public class CustomerOrder implements Serializable {
@Column(name = "total_number")
private Long totalNumber;
// 状态
private Boolean status;
public void copy(CustomerOrder source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}