CustomerFormDTO.java 349 B

12345678910111213141516171819
  1. package com.usoftchina.saas.document.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. /**
  6. * Created by zdw
  7. * 2018-10-23 17:26.
  8. */
  9. @Data
  10. public class CustomerFormDTO implements Serializable {
  11. private CustomerDTO main;
  12. private List<CustomercontactDTO> items1;
  13. private List<CustomeraddressDTO> items2;
  14. }