using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.Application.FaceAll
{
///
///
///
public class subtabulation
{
///
/// id
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int id { get; set; }
///
/// 信息id
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable masterid { get; set; }
///
/// 用户id
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public Nullable Lodgerid { get; set; }
}
}