| | |
| | | |
| | | @Data |
| | | public class ProductRevisionRecord { |
| | | |
| | | @ApiModelProperty(value = "店铺ID") |
| | | private Long storeId; |
| | | |
| | | @ApiModelProperty(value = "店铺名称") |
| | | private String storeName; |
| | | |
| | | @ApiModelProperty(value = "资质") |
| | | private List<StoreQualification> qualifications = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "删除的资质") |
| | | private List<Long> deletedQualificationIds = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "修改的资质") |
| | | private List<StoreQualificationUpdateRequest> updatedQualifications = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "新增的资质") |
| | | private List<StoreQualification> newQualifications = new ArrayList<>(); |
| | | |
| | | } |