using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IWareDataAccess.Entity.Base
|
{
|
public class PlaceStatusCountEntity
|
{
|
public int lPlaceCount { get; set; }
|
|
public int ePlaceCount { get; set; }
|
|
public int cPlaceCount { get; set; }
|
|
public int iPlaceCount { get; set; }
|
|
|
public int lAllPlaceCount { get; set; }
|
|
public int eAllPlaceCount { get; set; }
|
|
public int cAllPlaceCount { get; set; }
|
|
public int iAllPlaceCount { get; set; }
|
}
|
}
|