22 lines
471 B
Java
22 lines
471 B
Java
|
|
package com.engine.salary.entity.salaryacct.param;
|
||
|
|
|
||
|
|
import com.engine.salary.common.BaseQueryParam;
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @ClassName wldDynamicSalaryReportQueryParam
|
||
|
|
* @author Harryxzy
|
||
|
|
* @date 2025/6/20 10:11
|
||
|
|
* @description 万德隆薪酬动态表
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@AllArgsConstructor
|
||
|
|
@NoArgsConstructor
|
||
|
|
public class wldDynamicSalaryReportQueryParam extends BaseQueryParam {
|
||
|
|
|
||
|
|
boolean isExport;
|
||
|
|
|
||
|
|
}
|