27 lines
563 B
Java
27 lines
563 B
Java
package com.utopiaindustries.model.ctp;
|
|
|
|
import java.util.*;
|
|
public class StitchedItemWrapper {
|
|
|
|
|
|
private List<StitchingOfflineItem> items;
|
|
private Long finishedAccountId;
|
|
|
|
|
|
public List<StitchingOfflineItem> getItems() {
|
|
return items;
|
|
}
|
|
|
|
public void setItems(List<StitchingOfflineItem> items) {
|
|
this.items = items;
|
|
}
|
|
|
|
public Long getFinishedAccountId() {
|
|
return finishedAccountId;
|
|
}
|
|
|
|
public void setFinishedAccountId(Long finishedAccountId) {
|
|
this.finishedAccountId = finishedAccountId;
|
|
}
|
|
}
|