Infrastructure/OpenAuth.Repository/Domain/FireManagement/FmInterphonePoint.cs

48 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain.FireManagement
{
[SugarTable("fm_interphonepoint")]
public class FmInterphonePoint
{
[SugarColumn(IsPrimaryKey = true)]
public string account { get; set; }
public string passwd { get; set; }
public double lat { get; set; }
public double lng { get; set; }
public DateTime time { get; set; }
public long crc { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string username { get; set; }
/// <summary>
/// 分组名称
/// </summary>
public string groupname { get; set; }
/// <summary>
/// 联系方式
/// </summary>
public string phone { get; set; }
/// <summary>
/// 是否置顶
/// </summary>
public int top { get; set; }
/// <summary>
/// 是否是联系人
/// </summary>
public int iscontacts { get; set; }
/// <summary>
/// 厂商0厂商一1科立讯
/// </summary>
public int manufacture { get; set; }
}
}