yaowanxin
6 天以前 e0ba02eb14e31451293a93dafd285b279d9a7775
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.require.dto;
 
import com.ruoyi.require.pojo.FeMeasuredQuantity;
import com.ruoyi.require.pojo.FePowerStable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class FePowerStableAddDto extends FePowerStable {
 
    @ApiModelProperty("设施和环境条件要求-电源稳定性-测定量")
    private List<FeMeasuredQuantity> feMeasuredQuantityList;
}