55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
|
|
using System;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.Repository.Domain
|
|||
|
|
{
|
|||
|
|
///<summary>
|
|||
|
|
///防火驿站
|
|||
|
|
///</summary>
|
|||
|
|
[SugarTable("fm_fanghuoyizhan")]
|
|||
|
|
public partial class FmFanghuoyizhan
|
|||
|
|
{
|
|||
|
|
public FmFanghuoyizhan(){
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public int gid {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? lng {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? lat {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string mask {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string street {get;set;}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|