Fixiaobai
2023-11-07 940f06f6d8e5508f39bd7f8ce7791d60bfc0686c
1
2
3
4
5
6
7
8
9
10
11
12
package com.chinaztt.mes.plan.dto;
 
import com.chinaztt.mes.plan.entity.Customer;
import com.chinaztt.mes.plan.entity.CustomerOrder;
import lombok.Data;
 
@Data
public class CustomerDTO extends Customer {
 
    private CustomerOrder customerOrder;
 
}