24 lines
1.4 KiB
C#
24 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace cn.sancainet.Resident.health.register.Entity.XiTong
|
|
{
|
|
public class sys_area
|
|
{
|
|
public string ID { get; set; } //varchar 36 0 0 0 0 0 0 0 utf8 utf8_general_ci -1 0
|
|
public string AreaName { get; set; } //varchar 100 0 -1 0 0 0 0 0 区划名称 utf8 utf8_general_ci 0 0
|
|
public string AreaCode { get; set; } //varchar 36 0 -1 0 0 0 0 0 区划代码 utf8 utf8_general_ci 0 0
|
|
public string ParentId { get; set; } //varchar 36 0 -1 0 0 0 0 0 上级区划ID utf8 utf8_general_ci 0 0
|
|
public string SortName { get; set; } //varchar 100 0 -1 0 0 0 0 0 简称 utf8 utf8_general_ci 0 0
|
|
public byte AreaLevel { get; set; } //tinyint 4 0 -1 0 0 0 0 0 等级 0 0
|
|
public string Remark { get; set; } //varchar 100 0 -1 0 0 0 0 0 备注 utf8 utf8_general_ci 0 0
|
|
public string AreaNum { get; set; } //varchar 50 0 -1 0 0 0 0 0 区划编号 utf8 utf8_general_ci 0 0
|
|
public byte IsDel { get; set; } //tinyint 4 0 -1 0 0 0 0 0 0 是否删除 0 否 1 是 0 0
|
|
public string Creator { get; set; } //varchar 36 0 -1 0 0 0 0 0 创建人 utf8 utf8_general_ci 0 0
|
|
public DateTime CreateTime { get; set; } //datetime 0 0 -1 0 0 0 0 CURRENT_TIMESTAMP 0 创建时间 0 0
|
|
|
|
}
|
|
}
|