Fixiaobai
2023-11-15 48cddae0c3d3c0f3653c1354c0ab2beb436189c5
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;
 
}