NewGaoKaoApi/New_College.Model/Models/D_MajorMapOccouption.cs

24 lines
495 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_MajorMapOccouption : EntityModel
{
/// <summary>
/// 专业ID
/// </summary>
[SugarColumn(IsNullable = true)]
public long MajorId { get; set; }
/// <summary>
/// 职业ID
/// </summary>
[SugarColumn(IsNullable = true)]
public long OccouptionId { get; set; }
}
}