PersonGroupResult.java
387 Bytes
package com.viontech.keliu.entity;
import lombok.Data;
/**
* Created with IntelliJ IDEA.
*
* @author: zhuhai
* Date: 2023-03-28
* Time: 11:25
*/
@Data
public class PersonGroupResult {
private int staffNum;
private int customerNum;
private int customerAdultNum;
private int customerChildNum;
private int customerAlone;
private int customerGroup;
}