using System; using System.Collections.Generic; using System.Text; namespace Long.Common.System { /// /// 下一个值 /// public class NextValue { /// /// 表名 /// public string TableName { get; set; } /// /// 字段名 /// public string FieldName { get; set; } /// /// 值 /// public long Value { get; set; } /// /// 说明 /// public string Description { get; set; } } }