This commit is contained in:
2020-05-14 14:25:10 +00:00
parent 1b3fdfeca9
commit 848b5afc53
2 changed files with 7 additions and 1 deletions

View File

@@ -642,6 +642,12 @@ namespace AyaNova.Biz
return this;
}
public SearchIndexProcessObjectParameters AddText(long l)
{
Words.Add(l.ToString());
return this;
}
public SearchIndexProcessObjectParameters AddText(List<string> lWords)
{
if (lWords != null)

View File

@@ -16,7 +16,7 @@ namespace AyaNova.Models
[Required]
public string Name { get; set; }
public uint Serial { get; set; }
public long Serial { get; set; }
public decimal? DollarAmount { get; set; }
public bool? Active { get; set; }
public UserType UserType { get; set; }