# hello-World **Repository Path**: myMayu/hello-World ## Basic Information - **Project Name**: hello-World - **Description**: hello world - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README page com.newer.boot.emp /** * 员工实体类 * (练习Git) * 作者:朱璐 */ public class emp{ //员工id private Integer id; //员工姓名 private String ename; public Integer getId(){ return id; } public void setId(Integer id){ this.id=id; } public String getEname(){ return ename; } public void setEname(String ename){ this.ename=ename; } }