All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.web.model.mapper.CaseSummaryMapper Maven / Gradle / Ivy

There is a newer version: 0.6.5.5
Show newest version
package com.arextest.web.model.mapper;

import com.arextest.web.model.dao.mongodb.iosummary.CaseSummaryCollection;
import com.arextest.web.model.dto.iosummary.CaseSummary;
import org.mapstruct.Builder;
import org.mapstruct.Mapper;
import org.mapstruct.Mapping;
import org.mapstruct.Mappings;
import org.mapstruct.factory.Mappers;

/**
 * Created by rchen9 on 2023/2/28.
 */
@Mapper(builder = @Builder(disableBuilder = true))
public interface CaseSummaryMapper {

  CaseSummaryMapper INSTANCE = Mappers.getMapper(CaseSummaryMapper.class);

  CaseSummary dtoFromDao(CaseSummaryCollection dao);

  @Mappings({@Mapping(target = "dataCreateTime", expression = "java(new java.util.Date())"),})
  CaseSummaryCollection daoFromDto(CaseSummary dto);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy