using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformMain.DFEntity { /// /// /// 文件名(File Name): LVProjectInfoEntity.cs /// /// 描述(Description): 项目信息实体类 /// /// 数据表(Tables): nothing /// /// 作者(Author): Ou Rui Song /// /// 日期(Create Date): 2024年4月20日15:19:54 /// /// 修改记录(Revision History): /// R1: /// 修改作者: /// 修改日期: /// 修改理由: /// /// public class LVProjectInfoEntity { /// /// 项目内容 /// /// /// public LVProjectInfoEntity(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; } } }