【portal】更新职务信息的描述

dev-7.6.0-portal
fengshuonan 2023-06-15 16:57:35 +08:00
parent 60b4029219
commit dee573b7e0
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,39 @@
package cn.stylefeng.roses.kernel.system.modular.position.pojo;
import lombok.Data;
/**
*
*
* @author fengshuonan
* @since 2023/6/15 16:57
*/
@Data
public class DutyItem {
/**
* id
*/
private String userId;
/**
* id
*/
private String orgId;
/**
*
*/
private String orgName;
/**
*
*/
private String dutyCode;
/**
*
*/
private String dutyName;
}

View File

@ -0,0 +1,26 @@
package cn.stylefeng.roses.kernel.system.modular.position.pojo;
import lombok.Data;
import java.util.List;
/**
*
*
* @author fengshuonan
* @since 2023/6/15 16:56
*/
@Data
public class ExpandDutyInfo {
/**
*
*/
private String duty;
/**
*
*/
private List<DutyItem> ptDuty;
}