
4 changed files with 55 additions and 1 deletions
@ -0,0 +1,30 @@ |
|||||
|
package com.yxt.wms.biz.func.sysstafforg; |
||||
|
|
||||
|
|
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* Project: anrui_portal(门户建设) <br/> |
||||
|
* File: SysStaffOrgVo.java <br/> |
||||
|
* Class: com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgVo <br/> |
||||
|
* Description: 员工部门关联表 视图数据对象. <br/> |
||||
|
* Copyright: Copyright (c) 2011 <br/> |
||||
|
* Company: https://gitee.com/liuzp315 <br/>
|
||||
|
* Makedate: 2021-08-03 00:24:29 <br/> |
||||
|
* |
||||
|
* @author liupopo |
||||
|
* @version 1.0 |
||||
|
* @since 1.0 |
||||
|
*/ |
||||
|
@ApiModel(value = "员工部门关联表 视图数据对象", description = "员工部门关联表 视图数据对象") |
||||
|
@Data |
||||
|
public class SysStaffOrgByUserVo implements Vo { |
||||
|
|
||||
|
@ApiModelProperty("sid") |
||||
|
private String sid; |
||||
|
@ApiModelProperty("员工姓名") |
||||
|
private String name; |
||||
|
} |
Loading…
Reference in new issue