You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
365 B
Java
16 lines
365 B
Java
package com.glxp.api.res.sync;
|
|
|
|
import com.glxp.api.entity.basic.ProductInfoEntity;
|
|
import com.glxp.api.entity.basic.UdiCompanyEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class SpSyncUdiResponse extends BaseSyncResponse{
|
|
|
|
//同步任务ID
|
|
List<ProductInfoEntity> productInfoEntityList;
|
|
List<UdiCompanyEntity> udiCompanyEntities;
|
|
}
|