feat: 购物车增加枚举功能

This commit is contained in:
sdhkjh 2024-09-15 15:09:56 +08:00
parent e3e323431f
commit 83f0214431
2 changed files with 2 additions and 4 deletions

View file

@ -80,6 +80,4 @@ public class ShopTradeCartController {
public void resetShopTradeCart(InputObject inputObject, OutputObject outputObject) {
shopTradeCartService.resetShopTradeCart(inputObject, outputObject);
}
}
}

View file

@ -51,6 +51,6 @@ public class ShopTradeCart extends OperatorUserInfo {
private Integer count;
@TableField("selected")
@ApiModelProperty(value = "是否选中", required = "required")
@ApiModelProperty(value = "是否选中,参考#WhetherEnum", required = "required,num")
private Integer selected;
}