Compare commits

...

2 Commits

Author SHA1 Message Date
ShiPengHui b8fc71f492 添加了ResultProjectGroup实体类 2022-07-07 09:17:15 +08:00
ShiPengHui 9a02cfa846 添加了ResultProjectGroup实体类 2022-07-07 09:16:32 +08:00
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package cn.edu.hfut.rmdjzz.projectmanagement.entity.query;
import lombok.Data;
/**
* @author
* @since 2022/7/7 9:07
*/
@Data
public class ResultProjectGroup {
Integer staffId;
String staffFullname;
Integer projectId;
String projectStaffPosition;
Integer projectAccessLevel;
}