using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformMain.DFEntity { /// /// /// 文件名(File Name): UserInformationEntity.cs /// /// 描述(Description): 用户信息 /// /// 数据表(Tables): nothing /// /// 作者(Author): Ou Rui Song /// /// 日期(Create Date): 2024年4月20日15:22:54 /// /// 修改记录(Revision History): /// R1: /// 修改作者: /// 修改日期: /// 修改理由: /// /// public class UserInformationEntity { /// /// 用户信息 /// /// /// public UserInformationEntity(string userName, string userPwd) { UserName = userName; UserPwd = userPwd; } /// /// 用户名 /// public string UserName { get; set; } /// /// 密码 /// public string UserPwd { get; set; } } }