60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
using LearningOfficer.OA.Core.Entities;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.ManagerData
|
|
{
|
|
/// <summary>
|
|
/// 资料收集-收集用户列表
|
|
///</summary>
|
|
[SugarTable("manager_data_collection_user")]
|
|
public class ManagerDataCollectionUser : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:收集主题id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "datacollection_id" )]
|
|
public long DatacollectionId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:用户id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "user_id")]
|
|
public long UserId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:用户姓名
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "user_name")]
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:提交的文件id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "file_id" )]
|
|
public long? FileId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:提交时间
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "add_file_time" )]
|
|
public DateTime? AddFileTime { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |