26 lines
566 B
Java
26 lines
566 B
Java
package com.engine.salary.entity.datacollection.param;
|
|
|
|
import com.engine.salary.util.valid.DataCheck;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.time.YearMonth;
|
|
|
|
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class QuerySalaryCycleAndAttendCycleParam {
|
|
|
|
//薪资所属月
|
|
@DataCheck(require = true,message = "薪资所属月为空")
|
|
YearMonth salaryYearMonth;
|
|
|
|
//账套id
|
|
@DataCheck(require = true,message = "账套id为空")
|
|
Long salarySobId;
|
|
}
|