tijian_tieying/web/dccdc.Models/areaModel1.cs
2025-02-20 12:14:39 +08:00

21 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class AreaModel : Tree<AreaModel>
{
public int id { get; set; }
public string name { get; set; }
public string code { get; set; }
public string pCode { get; set; }
public int level { get; set; }
public int cy { get; set; }
public decimal bz { get; set; }
public decimal bz2 { get; set; }
public int zt { get; set; }
}
}