| 123456789101112131415161718 |
- package com.ydtech.modules.protocol.entity.dto;
- import com.ydtech.modules.esm.model.EsmInsCompany;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- import java.util.List;
- @EqualsAndHashCode(callSuper = true)
- @Data
- public class PtlAgreementInsCompanyDto extends EsmInsCompany implements Serializable {
- private static final long serialVersionUID = -5790993730287966635L;
- private List<PtlAgreementDto> agreement;
- }
|