|
@@ -64,7 +64,7 @@ public class SnapshotBulletinController : BaseController
|
|
|
/// <param name="id"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpGet("bulletin/entity/{id}")]
|
|
|
- public async Task<BulletinDto> BulletinEntity(string id)
|
|
|
+ public async Task<SnapshotBulletinDetailOutDto> BulletinEntity(string id)
|
|
|
{
|
|
|
var model = await _bulletinRepository.Queryable()
|
|
|
.Includes(x => x.ExaminMan)
|
|
@@ -73,7 +73,7 @@ public class SnapshotBulletinController : BaseController
|
|
|
if (model != null && !string.IsNullOrEmpty(model.Content))
|
|
|
model.Content = _bulletinApplication.GetSiteUrls(model.Content);
|
|
|
|
|
|
- return model.Adapt<BulletinDto>();
|
|
|
+ return model.Adapt<SnapshotBulletinDetailOutDto>();
|
|
|
}
|
|
|
|
|
|
/// <summary>
|