|
|
|
@ -217,7 +217,7 @@ namespace Shentun.Peis.RegisterCheckPictures |
|
|
|
ent = new RegisterCheckPicture |
|
|
|
{ |
|
|
|
DisplayOrder = input.PictureBaseStrs.IndexOf(item) + 1, |
|
|
|
IsPrint = 'Y', |
|
|
|
IsPrint = item.IsPrint, |
|
|
|
PictureFilename = PictureUrl, |
|
|
|
RegisterCheckId = input.RegisterCheckId, |
|
|
|
PictureFileType = input.PictureFileType |
|
|
|
@ -371,7 +371,8 @@ namespace Shentun.Peis.RegisterCheckPictures |
|
|
|
pic.Add(new UploadRegisterCheckPictureManyPictureBaseStrsDto |
|
|
|
{ |
|
|
|
FileName = input.PictureName, |
|
|
|
PictureBaseStr = input.PictureBase64 |
|
|
|
PictureBaseStr = input.PictureBase64, |
|
|
|
IsPrint = input.IsPrint |
|
|
|
}); |
|
|
|
|
|
|
|
await UploadRegisterCheckPictureManyAsync(new UploadRegisterCheckPictureManyDto |
|
|
|
@ -408,7 +409,8 @@ namespace Shentun.Peis.RegisterCheckPictures |
|
|
|
pic.Add(new UploadRegisterCheckPictureManyPictureBaseStrsDto |
|
|
|
{ |
|
|
|
FileName = input.PictureName, |
|
|
|
PictureBaseStr = input.PictureBase64 |
|
|
|
PictureBaseStr = input.PictureBase64, |
|
|
|
IsPrint = input.IsPrint |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
@ -450,7 +452,8 @@ namespace Shentun.Peis.RegisterCheckPictures |
|
|
|
pic.Add(new UploadRegisterCheckPictureManyPictureBaseStrsDto |
|
|
|
{ |
|
|
|
FileName = input.PictureName, |
|
|
|
PictureBaseStr = input.PictureBase64 |
|
|
|
PictureBaseStr = input.PictureBase64, |
|
|
|
IsPrint = input.IsPrint |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|