dengzedong
2024-10-10 a8f2f4e6f1a9173d7eb9779c7879674015c8cda0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.iailab.module.model.api.mcs.dto;
 
import java.io.Serializable;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年10月10日
 */
public class ScheduleModelSettingReqDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    private String modelid;
 
    /**
     * 键
     */
    private String key;
 
    /**
     * 值
     */
    private String value;
}