mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-07 06:08:01 +08:00
15 lines
354 B
C#
15 lines
354 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace OpenAuth.Domain
|
||
|
{
|
||
|
public partial class UserOrg
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public int OrgId { get; set; }
|
||
|
public int UserId { get; set; }
|
||
|
public System.DateTime OperateTime { get; set; }
|
||
|
public int OperatorId { get; set; }
|
||
|
}
|
||
|
}
|