Compare commits
No commits in common. "5d91ae815767a61c8422b1c17c99f99f2d87e5f8" and "e931e740e6d13c53369b05d34e31e25b530aadac" have entirely different histories.
5d91ae8157
...
e931e740e6
|
@ -33,11 +33,6 @@ public class SysFileTypeAddOrEdit
|
||||||
|
|
||||||
public string NameCN { get; set; }
|
public string NameCN { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 显示顺序
|
|
||||||
/// </summary>
|
|
||||||
public int ShowOrder { get; set; }
|
|
||||||
|
|
||||||
public SubIdentification SubIdentificationEnum { get; set; }
|
public SubIdentification SubIdentificationEnum { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -153,7 +153,7 @@ public class TrialFileTypeService(IRepository<TrialFileType> _trialFileTypeRepos
|
||||||
result.Add(new TrialFileTypeData()
|
result.Add(new TrialFileTypeData()
|
||||||
{
|
{
|
||||||
ArchiveTypeEnum = type,
|
ArchiveTypeEnum = type,
|
||||||
TrialFileTypeList = trialFileTypeList.Where(x => x.ArchiveTypeEnum == type).OrderBy(x=>x.ShowOrder).ToList()
|
TrialFileTypeList = trialFileTypeList.Where(x => x.ArchiveTypeEnum == type).ToList()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue