АБ

Size: a a a
АБ
ア
ア
КХ
MR
Property "id" has no write accessor in DeptResponseDto.
@Mapper(componentModel = "spring", nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface DeptMapper {
@Mappings({
@Mapping(target = "id", source = "id"),
@Mapping(target = "name", source = "name")
})
DeptResponseDto toDto(Department department);
}
АЛ
MR
Э
Property "id" has no write accessor in DeptResponseDto.
@Mapper(componentModel = "spring", nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface DeptMapper {
@Mappings({
@Mapping(target = "id", source = "id"),
@Mapping(target = "name", source = "name")
})
DeptResponseDto toDto(Department department);
}
DeptResponseDto
MR
@Data
@Builder(builderClassName = "Builder")
@JsonDeserialize(builder = DeptResponseDto.Builder.class)
public class DeptResponseDto {
private final Long id;
private final String name;
@JsonPOJOBuilder(withPrefix = "")
public static class Builder {
}
}
NG
@Data
@Builder(builderClassName = "Builder")
@JsonDeserialize(builder = DeptResponseDto.Builder.class)
public class DeptResponseDto {
private final Long id;
private final String name;
@JsonPOJOBuilder(withPrefix = "")
public static class Builder {
}
}
MR
АD
MR
MR
DeptResponseDto(java.lang.Long,java.lang.String) is not public in nm.uty.emm_r1.DTO.DeptResponseDto; cannot be accessed from outside package
V
АD
АD
DeptResponseDto(java.lang.Long,java.lang.String) is not public in nm.uty.emm_r1.DTO.DeptResponseDto; cannot be accessed from outside package
АD
MR
G