耗材 开关

This commit is contained in:
2026-04-01 10:38:55 +08:00
parent a5fdb6eac7
commit fb0b74a0cb
6 changed files with 65 additions and 38 deletions

View File

@@ -76,6 +76,10 @@ public class ConsInfoDTO implements Serializable {
* 是否检测耗材: 1 检测 0 不检测
*/
private Integer isStock;
/**
* 是否退款退回: 1 退回 0 不退回
*/
private Integer isRefundStock;
/**
* 第二单位
*/

View File

@@ -69,6 +69,10 @@ public class ConsInfo implements Serializable {
* 是否检测耗材: 1 检测 0 不检测
*/
private Integer isStock;
/**
* 是否退款退回: 1 退回 0 不退回
*/
private Integer isRefundStock;
/**
* 第二单位
*/

View File

@@ -87,6 +87,11 @@ public interface ConsInfoService extends IService<ConsInfo> {
*/
void onOffConsInfo(Long id, Integer isStock);
/**
* 是否退款退回
*/
void isRefundStockConsInfo(Long id, Integer isRefundStock);
/**
* 修改耗材单位
*