You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
450 B
24 lines
450 B
package com.example.demo.domain.vo;
|
|
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName Page
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−06-23 16:23
|
|
* @Version 1.0
|
|
**/
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class Page {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Integer pageNum;
|
|
private Integer pageSize;
|
|
private GoldDetail goldDetail;
|
|
private Consume consume;
|
|
|
|
}
|