sozsoft-platform/api/src/Sozsoft.Platform.Domain/Queries/FieldsDefaultValue.cs

26 lines
673 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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;
}
}