18 lines
442 B
C#
18 lines
442 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class HoldGroupMapOccup : EntityModel
|
|
{
|
|
[SugarColumn(Length = 20, IsNullable = true, ColumnDataType = "varchar")]
|
|
public string Tag { get; set; }
|
|
|
|
[SugarColumn(Length = 1500, IsNullable = true, ColumnDataType = "varchar")]
|
|
public string Occupation { get; set; }
|
|
|
|
}
|
|
}
|