增加下载台码功能
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package cn.ysk.cashier.dto.shop;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author GYJ
|
||||
*/
|
||||
@Data
|
||||
public class TbDeviceStockDownloadDto {
|
||||
private String shopId;
|
||||
private Integer count;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package cn.ysk.cashier.dto.shop;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class TbDeviceStockDto implements Serializable {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer shopId;
|
||||
|
||||
private Integer maxCapacity;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Integer areaId;
|
||||
|
||||
private Integer isPredate;
|
||||
|
||||
private String status;
|
||||
|
||||
private Integer type;
|
||||
|
||||
private String view;
|
||||
|
||||
private Long createdAt;
|
||||
|
||||
private Long updatedAt;
|
||||
|
||||
private String qrcode;
|
||||
}
|
||||
Reference in New Issue
Block a user