You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
468 B
19 lines
468 B
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using GDZZ.Core.Entity;
|
|
namespace GDZZ.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 职业表
|
|
/// </summary>
|
|
[SugarTable("mini_self")]
|
|
[Description("职业表")]
|
|
public class SeIF : DEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 职业名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
} |