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.

23 lines
671 B

12 months ago
using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
/// <summary>
/// 公司数据范围表
/// </summary>
[SugarTable("mini_company_user_scope")]
[Description("公司数据范围表")]
public class CompanyUserScope
{
/// <summary>
/// 用户ID
/// </summary>
public long MiniUserID { get; set; }
/// <summary>
/// 公司ID
/// </summary>
public long MiniCompanyID { get; set; }
}
}