sozsoft-platform/api/src/Sozsoft.Platform.Domain/Queries/FieldsDefaultValue.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

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;
}
}