using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IWareDataAccess.Entity.Base
|
{
|
public class PlaceEntity
|
{
|
public string placeCode { get; set; }
|
public string placeName { get; set; }
|
|
public int placeStates { get; set; }
|
|
public int? layer { get; set; }
|
|
public int? col { get; set; }
|
|
public int? row { get; set; }
|
}
|
}
|