23 lines
568 B
C#
Executable File
23 lines
568 B
C#
Executable File
using System.Collections.Generic;
|
|
using ET;
|
|
|
|
namespace Cal.DataTable
|
|
{
|
|
public partial class ActivePerDayConfigCategory
|
|
{
|
|
public UnOrderMultiMap<byte, long> activeIdDic = new UnOrderMultiMap<byte, long>();
|
|
|
|
public override void EndInit()
|
|
{
|
|
base.EndInit();
|
|
foreach (var kv in this.dict)
|
|
{
|
|
foreach (var i1 in kv.Value.Day)
|
|
{
|
|
var i = (byte) i1;
|
|
activeIdDic.Add(i,kv.Key);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |