| | |
| | | |
| | | import com.vincent.rsf.server.manager.entity.LocItem; |
| | | import com.vincent.rsf.server.manager.utils.Synchro; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import lombok.experimental.Delegate; |
| | | |
| | | import java.util.List; |
| | | |
| | | |
| | | @Data |
| | | public class OrderOutItemDto { |
| | | @Delegate |
| | | @Accessors(chain = true) |
| | | public class OrderOutItemDto { |
| | | |
| | | |
| | | @Delegate(excludes = Synchro.class) |
| | | private LocItem locItem; |
| | | |
| | | |
| | | private List<staListDto> staNos; |
| | | |
| | | private String siteNo; |
| | | |
| | | @Data |
| | | public static class staListDto{ |
| | | private String staNo; |
| | | private String staName; |
| | | } |
| | | |
| | | |
| | | public void sync(Object source) { |
| | | Synchro.Copy(source, this); |