| 12345678910111213141516171819 |
- package com.usoftchina.saas.document.dto;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * Created by zdw
- * 2018-10-23 17:26.
- */
- @Data
- public class CustomerFormDTO implements Serializable {
- private CustomerDTO main;
- private List<CustomercontactDTO> items1;
- private List<CustomeraddressDTO> items2;
- }
|