增加下载台码功能

This commit is contained in:
GYJ
2024-06-13 12:00:06 +08:00
parent 737d38d0a6
commit d693e8afd5
14 changed files with 653 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -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;
}