zepengdev
2025-09-17 23e3602b4f3ebde8665c3ab3a56ef81b8d671e0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.oying.modules.pc.product.domain.dto;
 
import com.oying.modules.pc.product.domain.Product;
import com.oying.modules.pc.store.domain.Store;
import com.oying.modules.pc.store.domain.dto.StoreRevisionRecord;
import lombok.Data;
 
@Data
public class ProductAuditData {
 
    private Product originalStore;
    private Product product;
    private ProductRevisionRecord revisionRecord;
 
}