namespace Long.Core.Query; /// /// 下一个值实体类 /// public class NextValue { /// /// 表名 /// public string? TableName { get; set; } /// /// 字段名 /// public string? FieldName { get; set; } /// /// 值 /// public long Value { get; set; } }