using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformProject.CollaborationPlatform.Entity { /// /// /// ⽂件名(File Name):     LVTeamMembersEntity.cs /// /// 描述(Description):     团队成员 /// /// 数据表(Tables):       nothing /// /// 作者(Author):         Sun Zheng Ji /// /// ⽇期(Create Date):     /// /// 修改记录(Revision History): ///     R1: ///         修改作者: ///         修改⽇期: ///         修改理由: /// /// public class LVTeamMembersEntity { /// /// 项目内容 /// /// /// public LVTeamMembersEntity(string lab, string name) { Lab = lab; Name = name; Content = lab + name; } /// /// 标题 /// public string Lab { get; set; } /// /// 内容 /// public string Name { get; set; } /// /// 总内容 /// public string Content { get; set; } } }