doum
19 小时以前 7a0b33a5f2e0ba589bf35a1b8d896700a21f94a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.doumee.dao.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("门店打印机维护请求")
public class ShopPrinterDTO {
 
    @ApiModelProperty(value = "门店主键", required = true)
    private Integer id;
 
    @ApiModelProperty(value = "打印机SN编号(不传则为删除)")
    private String printerSn;
 
}