Skip to content

Commit

Permalink
more pod
Browse files Browse the repository at this point in the history
  • Loading branch information
vanyabrovary committed Aug 2, 2017
1 parent d0253cd commit e687804
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 0 deletions.
43 changes: 43 additions & 0 deletions Model/FeedFile.pm
Expand Up @@ -17,3 +17,46 @@ sub feed_file_stat() {
}

1;

=pod
=encoding UTF-8
=head1 NAME
Model::FeedFile
=head1 VERSION
0.1
=head1 DESCRIPTION
Model::FeedFile - Model of feed_file table
=head1 SYNOPSIS
my $model = Model::FeedFile->load($arg->{id});
print $model->feed_file_stat->{started_at};
print ->load;
=head1 METHODS
=head2 feed_file_stat
load Model::FeedFileStat
=head1 AUTHORS
mobitrade.ua
=head1 COPYRIGHT AND LICENSE
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
=head1 HISTORY
Version 0.1: first release; April 2015
=cut
46 changes: 46 additions & 0 deletions Model/FeedFileStat.pm
Expand Up @@ -28,3 +28,49 @@ sub is_exists() {
}

1;

=pod
=encoding UTF-8
=head1 NAME
Model::FeedFileStat
=head1 VERSION
0.1
=head1 DESCRIPTION
Model::FeedFileStat - Model of feed_file_stat table
=head1 SYNOPSIS
my $model = Model::FeedFileStat->load($arg->{id});
print $_->{id} foreach ( @{ $model->feed_file_stat_gaps } );
=head1 METHODS
=head2 feed_file
load Model::FeedFile
=head2 feed_file_stat_gaps
"select * from feed_file_stat_gaps where feed_file_stat_id = ".$self->{id}
=head1 AUTHORS
mobitrade.ua
=head1 COPYRIGHT AND LICENSE
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
=head1 HISTORY
Version 0.1: first release; April 2015
=cut
45 changes: 45 additions & 0 deletions Model/FeedFileStatGaps.pm
Expand Up @@ -5,6 +5,7 @@ use strict;

use Model;
our @ISA = qw/Model/;

sub db_table() { 'feed_file_stat_gaps' }
sub db_columns() { qw/id feed_file_stat_id rcv_time_after rcv_time_till/ }

Expand All @@ -16,3 +17,47 @@ sub feed_file_stat() {
}

1;

=pod
=encoding UTF-8
=head1 NAME
Model::FeedFileStatGaps
=head1 VERSION
0.1
=head1 DESCRIPTION
Model::FeedFileStatGaps - Model of feed_file_stat_gaps table
=head1 SYNOPSIS
print $_->{id} foreach ( @{ Model::FeedFileStatGaps->list() } );
=head1 METHODS
=head2 feed_file
load Model::FeedFile
=head2 feed_file_stat_gaps
"select * from feed_file_stat_gaps where feed_file_stat_id = ".$self->{id}
=head1 AUTHORS
mobitrade.ua
=head1 COPYRIGHT AND LICENSE
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
=head1 HISTORY
Version 0.1: first release; April 2015
=cut

0 comments on commit e687804

Please sign in to comment.