fix:退换货、用完清洗金额口调整

This commit is contained in:
shusir
2026-03-03 18:05:53 +08:00
parent 20a377f715
commit d179bd9379
29 changed files with 432 additions and 65 deletions

View File

@@ -1,6 +1,12 @@
package com.zt.plat.module.qms.enums;
public enum AdjustType {
/**
* 加
*/
add,
/**
* 减
*/
subtract,
}

View File

@@ -0,0 +1,12 @@
package com.zt.plat.module.qms.enums;
public enum LockType {
/**
* 锁定
*/
lock,
/**
* 解锁
*/
unlock,
}