fix:人员门店支持关键字keywork搜索

This commit is contained in:
suzhuhong
2025-12-25 20:01:24 +08:00
parent e97c147fac
commit 655b9a8f17
2 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
package com.cool.store.request;
import com.cool.store.common.PageBasicInfo;
import lombok.Data;
/**
* @Auther zx_szh
* @Date 2025/12/25 19:58
* @Version 1.0
*/
@Data
public class UserStoreRequest extends PageBasicInfo {
private String keyword;
}