最大送礼数量调整

This commit is contained in:
tianfeng 2025-11-21 11:36:33 +08:00
parent 76d423de0e
commit 76aa623a3e
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ public class GiveAwayGiftBackpackCmd extends AppExtCommand {
*
* @eo.required
*/
@Range(min = 1, max = 999, message = "quantity range 1~999")
@Range(min = 1, max = 7777, message = "quantity range 1~7777")
@NotNull(message = "quantity required.")
private Integer quantity;

View File

@ -45,7 +45,7 @@ public class GiveAwayGiftBatchCmd extends AppExtCommand {
/**
* 礼物数量.
*/
@Range(min = 1, max = 999, message = "quantity range 1~999")
@Range(min = 1, max = 7777, message = "quantity range 1~7777")
@NotNull(message = "quantity required.")
private Integer quantity;