31 lines
549 B
Java
31 lines
549 B
Java
|
|
package com.engine.salary.entity.siaccount.param;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Author weaver_cl
|
||
|
|
* @Description: TODO 添加正常缴纳
|
||
|
|
* @Date 2022/4/11
|
||
|
|
* @Version V1.0
|
||
|
|
**/
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class SaveCommonAccountParam {
|
||
|
|
|
||
|
|
//包含人员")
|
||
|
|
private List<Long> includes;
|
||
|
|
|
||
|
|
//剔除人员")
|
||
|
|
private List<Long> excludes;
|
||
|
|
|
||
|
|
//账单月份")
|
||
|
|
private String billMonth;
|
||
|
|
}
|