44 lines
887 B
C#
44 lines
887 B
C#
using Hncore.Infrastructure.Data;
|
|
using Hncore.Infrastructure.DDD;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Data;
|
|
using System.Linq.Expressions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Hncore.Infrastructure.WebApi;
|
|
using Hncore.Pass.Manage.Request;
|
|
|
|
namespace Hncore.Pass.Manage.Response
|
|
{
|
|
public class ManagerResponse
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
/// 用户数据库ID
|
|
/// <summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属物业ID
|
|
/// <summary>
|
|
public int OwnerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// <summary>
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// <summary>
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|