package com.eksad.masterdata.common.dto; import com.eksad.ddms.common.dto.CreationalSpecificationDTO; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @Getter @Setter @NoArgsConstructor @AllArgsConstructor public class BusinessHourDTO { private String businessHourId; private String openTime; private String closeTime; private String businessHourDayId; private CreationalSpecificationDTO businessHourCreationalDTO; private String errorCode; private String message; private String status; }