How would you do that?
You are sending files which contains many lines.Every line is a record from database.
All files are zipped toggether into one file. Is it enough to send a checksum with this file to ensure that other side received all records and none has disappear?
A checksum would change if any contents of the file were malformed or missing, so by comparing the checksums, the recipient can be sure that the files were received fully and not damaged. After all, that is the entire purpose of the checksum.
If you are worried about attackers, I would not send the checksum with the files, as an attacker could intercept both the file and the checksum, change the file, modify the checksum to allow the modifications to appear valid, and send the file on its way.
Like other posters have said, however, the major packaging formats contain a built-in checksum for validation of the contents.