This commit is contained in:
wangjinlei
2024-03-22 13:41:31 +08:00
parent e53b954769
commit c7310af8ba

View File

@@ -0,0 +1,16 @@
package com.peanut.modules.common.to;
import lombok.Data;
@Data
public class ParamTo {
private Integer id;
private Integer limit;
private Integer page;
private String keywords;
}