You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
504 B

1 year ago
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CK.SCP.Models.ScpEntity
{
public partial class TB_ADDRESS
{
[Key]
public long UID { get; set; }
public string Address { get; set; }
public string NamePone { get; set; }
/// <summary>
/// 地点
/// </summary>
public string SubSite { get; set; }
1 year ago
}
}