38 lines
930 B
C#
38 lines
930 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using LearningOfficer.OA.Common.Configs;
|
|
using SqlSugar;
|
|
using LearningOfficer.OA.Core.Entities;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.UserCenter
|
|
{
|
|
/// <summary>
|
|
/// 总部长绑定的云校
|
|
///</summary>
|
|
[SugarTable("oa_general_cloudschool"), Tenant(nameof(ConnectionStringsSettings.UserCenterDb))]
|
|
public class OaGeneralCloudschool : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:用户id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "userid")]
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:云校id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "cloudschoolid")]
|
|
public long CloudSchoolId { get; set; }
|
|
|
|
}
|
|
|
|
} |