using System; namespace Zhaizj.Framework.Common { /// /// 需要统计点击数的对象接口 /// public interface IHits { int Id { get; set; } int Hits { get; set; } } }