package com.cnbm.basic.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; @Data @ApiModel(value = "工艺特性-工序 DTO对象") public class FeaturesProcedureDTO implements Serializable { @ApiModelProperty(value = "检验参数id,关联product_features表") private Long productFeaturesId; @ApiModelProperty(value = "工序id,关联 working_procedure 表") private Long workingProcedureId; }