25 lines
673 B
C#
25 lines
673 B
C#
using Sozsoft.Platform.Enums;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using Volo.Abp.Domain.Values;
|
|
|
|
namespace Sozsoft.Platform.Queries;
|
|
|
|
public class FieldsDefaultValue : ValueObject
|
|
{
|
|
public string FieldName { get; set; }
|
|
public DbType FieldDbType { get; set; }
|
|
public string Value { get; set; }
|
|
public FieldCustomValueTypeEnum CustomValueType { get; set; }
|
|
public string SqlQuery { get; set; }
|
|
|
|
protected override IEnumerable<object> GetAtomicValues()
|
|
{
|
|
yield return FieldName;
|
|
yield return FieldDbType;
|
|
yield return Value;
|
|
yield return CustomValueType;
|
|
yield return SqlQuery;
|
|
}
|
|
}
|
|
|