57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
using LearningOfficer.OA.Core.Entities;
|
|
using LearningOfficer.OA.Common.Configs;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.UserCenter
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("cloudschoolrelation"), Tenant(nameof(ConnectionStringsSettings.UserCenterDb))]
|
|
public class Cloudschoolrelation : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:学校名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "SchoolName")]
|
|
public string SchoolName { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 备 注:添加时间
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CreateTime")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:学校id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "SchoolId")]
|
|
public long SchoolId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:云校id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CloudSchoolId")]
|
|
public long CloudSchoolId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:云校名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CloudSchoolName")]
|
|
public string CloudSchoolName { get; set; } ="";
|
|
|
|
|
|
}
|
|
|
|
} |