feat:查询仿真策划版本

This commit is contained in:
2026-01-28 20:22:58 +08:00
parent 0126d1c548
commit 913eab0051
6 changed files with 33 additions and 2 deletions

View File

@@ -44,6 +44,10 @@ public class LyricVUserToDm {
* 工种名称
*/
private String work_type_name;
/**
* 岗位编码
*/
private String job_code;
/**
* 岗位名称
*/

View File

@@ -2,11 +2,19 @@ package com.sdm.outbridge.mode;
import lombok.Data;
import java.util.ArrayList;
import java.util.List;
@Data
public class GetUserListReq {
/**
* 工种
* 工种 模糊匹配
*/
private String workType;
private String workType = "";
/**
* 工种列表 精确匹配
*/
private List<String> workTypeList = new ArrayList<>();
}