奖惩流程接口修改, 增加返回参数
This commit is contained in:
parent
3e5a0117a1
commit
58ac007a09
@ -8,10 +8,12 @@ import lombok.EqualsAndHashCode;
|
||||
import lombok.ToString;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||
|
||||
@ -24,6 +26,12 @@ public class BpmOAIncentiveRespVO extends BpmOABaseRespVO {
|
||||
@Schema(description = "奖惩类型 字典值参考 bpm_oa_incentive_type")
|
||||
private Integer type;
|
||||
|
||||
@Schema(description = "奖惩人编号")
|
||||
private Set<Long> incentiveUserIds;
|
||||
|
||||
@Schema(description = "奖惩人部门编号")
|
||||
private Set<Long> incentiveDeptIds;
|
||||
|
||||
@Schema(description = "奖惩人信息列表 key:部门名称, value:用户名称集合")
|
||||
private Map<String, List<String>> userInfo;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user