25 lines
719 B
C#
25 lines
719 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace RuleEngine.Models
|
|||
|
{
|
|||
|
public partial class TransactionPoint
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string PointCode { get; set; }
|
|||
|
public string PointName { get; set; }
|
|||
|
public int PointType { get; set; }
|
|||
|
public string Address { get; set; }
|
|||
|
public double Longitude { get; set; }
|
|||
|
public double Latitude { get; set; }
|
|||
|
public string Branch { get; set; }
|
|||
|
public string Contact { get; set; }
|
|||
|
public string Phone { get; set; }
|
|||
|
public string Fax { get; set; }
|
|||
|
public int? UnitId { get; set; }
|
|||
|
public double? Distance { get; set; }
|
|||
|
}
|
|||
|
}
|