parent
2d59d4ee12
commit
b6e6554de3
7 changed files with 40 additions and 8 deletions
@ -0,0 +1,22 @@ |
||||
package org.springblade.desk.jobTransfer.pojo.request; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 转岗功能保存实体类 |
||||
*/ |
||||
@Data |
||||
public class JobTransferSave { |
||||
@Schema(description = "人员岗位管理ID", required = true) |
||||
private Long phId; |
||||
|
||||
@Schema(description = "人员岗位管理状态1实习-培训中,2转岗中,3正常,4下岗中,5离职,6转岗培训合格,7下岗培训合格,8实习培训合格,9培训不合格", required = true) |
||||
private Short phStatus; |
||||
|
||||
@Schema(description = "新班组ID", required = true) |
||||
private Long deptId; |
||||
|
||||
@Schema(description = "新岗位", required = true) |
||||
private String station; |
||||
} |
||||
Binary file not shown.
Loading…
Reference in new issue