This commit is contained in:
zt
2025-02-22 09:16:29 +08:00
parent bd1a99803b
commit 315191ee73
54 changed files with 1098 additions and 237 deletions

View File

@ -2,6 +2,8 @@ package cn.iocoder.yudao.module.system.api.carteen.dto;
import lombok.Data;
import java.math.BigDecimal;
/**
* 门店管理 DO
*
@ -48,4 +50,6 @@ public class CarteenRespDto{
*/
private String serialNumber;
private BigDecimal bindMoney;
}

View File

@ -201,4 +201,5 @@ public interface ErrorCodeConstants {
ErrorCode CASH_REGISTER_INFO_NOT_EXISTS = new ErrorCode(1_002_040_005, "收银机信息关联门店不存在");
ErrorCode CASH_REGISTER_INFO_EXISTS = new ErrorCode(1_002_040_006, "收银机已存在");
ErrorCode DEVICE_WARN_NOT_EXISTS = new ErrorCode(1_002_040_007, "设备报警不存在");
}