PtlAgreementInsCompanyDto.java 459 B

123456789101112131415161718
  1. package com.ydtech.modules.protocol.entity.dto;
  2. import com.ydtech.modules.esm.model.EsmInsCompany;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. @EqualsAndHashCode(callSuper = true)
  8. @Data
  9. public class PtlAgreementInsCompanyDto extends EsmInsCompany implements Serializable {
  10. private static final long serialVersionUID = -5790993730287966635L;
  11. private List<PtlAgreementDto> agreement;
  12. }