yaowanxin
7 天以前 b290cb0452d5731694e6ffe46e8f6eb5fec645a6
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;
}