xuhy
2025-04-22 4b2c48677c2b5de7f89ff0d018a55b7916467b27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.admin.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-07-09 18:10
 */
@Data
@ApiModel("设置师傅终端编号DTO")
public class MonitorCodeDTO {
 
    @ApiModelProperty("终端编号")
    private String terminalCode;
    @ApiModelProperty("师傅id")
    private Integer id;
 
 
}