]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/asset.pm
new FM stuff; trimmed search_fts methods
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / CDBI / asset.pm
1 package OpenILS::Application::Storage::CDBI::asset;
2 our $VERSION = 1;
3
4 #-------------------------------------------------------------------------------
5 package asset;
6 use base qw/OpenILS::Application::Storage::CDBI/;
7 #-------------------------------------------------------------------------------
8 package asset::copy_location;
9 use base qw/asset/;
10
11 __PACKAGE__->table( 'asset_copy_location' );
12 __PACKAGE__->columns( Primary => qw/id/ );
13 __PACKAGE__->columns( Essential => qw/name owning_lib holdable opac_visible circulate/ );
14
15 #-------------------------------------------------------------------------------
16 package asset::call_number;
17 use base qw/asset/;
18
19 __PACKAGE__->table( 'asset_call_number' );
20 __PACKAGE__->columns( Primary => qw/id/ );
21 __PACKAGE__->columns( Essential => qw/record label creator create_date editor
22                                    edit_date record label owning_lib deleted/ );
23
24 #-------------------------------------------------------------------------------
25 package asset::call_number_note;
26 use base qw/asset/;
27
28 __PACKAGE__->table( 'asset_call_number_note' );
29 __PACKAGE__->columns( Primary => qw/id/ );
30 __PACKAGE__->columns( Essential => qw/call_number title creator create_date value pub/ );
31
32 #-------------------------------------------------------------------------------
33 package asset::copy;
34 use base qw/asset/;
35
36 __PACKAGE__->table( 'asset_copy' );
37 __PACKAGE__->columns( Primary => qw/id/ );
38 __PACKAGE__->columns( Essential => qw/call_number barcode creator create_date editor
39                                    edit_date copy_number status loan_duration circ_lib
40                                    fine_level circulate deposit price ref opac_visible
41                                    circ_as_type circ_modifier deposit_amount location
42                                    holdable dummy_title dummy_author deleted alert_message/ );
43
44 #-------------------------------------------------------------------------------
45 package asset::stat_cat;
46 use base qw/asset/;
47
48 __PACKAGE__->table( 'asset_stat_cat' );
49 __PACKAGE__->columns( Primary => qw/id/ );
50 __PACKAGE__->columns( Essential => qw/owner name opac_visible/ );
51
52 #-------------------------------------------------------------------------------
53 package asset::stat_cat_entry;
54 use base qw/asset/;
55
56 __PACKAGE__->table( 'asset_stat_cat_entry' );
57 __PACKAGE__->columns( Primary => qw/id/ );
58 __PACKAGE__->columns( Essential => qw/stat_cat owner value/ );
59
60 #-------------------------------------------------------------------------------
61 package asset::stat_cat_entry_copy_map;
62 use base qw/asset/;
63
64 __PACKAGE__->table( 'asset_stat_cat_entry_copy_map' );
65 __PACKAGE__->columns( Primary => qw/id/ );
66 __PACKAGE__->columns( Essential => qw/stat_cat stat_cat_entry owning_copy/ );
67
68 #-------------------------------------------------------------------------------
69 package asset::copy_note;
70 use base qw/asset/;
71
72 __PACKAGE__->table( 'asset_copy_note' );
73 __PACKAGE__->columns( Primary => qw/id/ );
74 __PACKAGE__->columns( Essential => qw/owning_copy title creator create_date value pub/ );
75
76 #-------------------------------------------------------------------------------
77
78
79 1;
80