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