消防站文档解析
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.

27 lines
683 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Domain.Models.FileUploads
{
public class FileUnit
{
public Guid Id { get; set; }
/// <summary>
/// 微擎小程序/公众号ID
/// </summary>
public int Uniacid { get; set; }
/// <summary>
/// 团体ID
/// </summary>
[Column("group_id")]
public int GroupId { get; set; }
/// <summary>
/// 单位分类ID,关联表building_category
/// </summary>
public Guid FileId { get; set; }
public int UnitId { get; set; }
}
}