def self.primary_key_name : Symbol | Nil
#
class Report
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/report.crConstant Summary
-
ASSOCIATIONS =
[{type: ProcessLine, assoc_name: process_line, foreign_key: :process_line_id, relationship_type: :belongs_to, through: nil}, {type: Workshop, assoc_name: workshop, foreign_key: :workshop_id, relationship_type: :belongs_to, through: nil}, {type: Manufactory, assoc_name: manufactory, foreign_key: :manufactory_id, relationship_type: :belongs_to, through: nil}, {type: Company, assoc_name: company, foreign_key: :company_id, relationship_type: :belongs_to, through: nil}] of Nil
-
COLUMNS =
[{name: id, type: Int64, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: target_total_count, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: processed_total_count, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: qualified_total_count, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: report_date, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: report_year_num, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: report_month_num, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: report_week_num, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: process_line_id, type: ProcessLine::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: workshop_id, type: Workshop::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: manufactory_id, type: Manufactory::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: company_id, type: Company::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, target_total_count : Int32, processed_total_count : Int32, qualified_total_count : Int32, report_date : String, report_year_num : Int32, report_month_num : Int32, report_week_num : Int32, process_line_id : Int64, workshop_id : Int64, manufactory_id : Int64, company_id : Int64)
- .new(__temp_150 : DB::ResultSet)
Class Method Summary
- .column_names : Array(Symbol)
- .columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String))
- .ensure_correct_column_mappings!
- .from_rs(__temp_150 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::Report::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #company : Company
- #company! : Company
- #company_count : Int64
- #company_id : Company::PrimaryKeyType
- #company_id=(_company_id : Company::PrimaryKeyType::Lucky::ColumnType)
- #company_query
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::Report::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #manufactory : Manufactory
- #manufactory! : Manufactory
- #manufactory_count : Int64
- #manufactory_id : Manufactory::PrimaryKeyType
- #manufactory_id=(_manufactory_id : Manufactory::PrimaryKeyType::Lucky::ColumnType)
- #manufactory_query
- #process_line : ProcessLine
- #process_line! : ProcessLine
- #process_line_count : Int64
- #process_line_id : ProcessLine::PrimaryKeyType
- #process_line_id=(_process_line_id : ProcessLine::PrimaryKeyType::Lucky::ColumnType)
- #process_line_query
-
#processed_rate
车缝完成率 = 车缝/目标
- #processed_total_count : Int32
- #processed_total_count=(_processed_total_count : Int32::Lucky::ColumnType)
- #products
-
#qualified_processed_rate
合格率 = 良品/车缝
-
#qualified_target_rate
良品完成率 = 良品/目标
- #qualified_total_count : Int32
- #qualified_total_count=(_qualified_total_count : Int32::Lucky::ColumnType)
- #report_date : String
- #report_date=(_report_date : String::Lucky::ColumnType)
- #report_month_num : Int32
- #report_month_num=(_report_month_num : Int32::Lucky::ColumnType)
- #report_week_num : Int32
- #report_week_num=(_report_week_num : Int32::Lucky::ColumnType)
- #report_year_num : Int32
- #report_year_num=(_report_year_num : Int32::Lucky::ColumnType)
- #rework_total_count
- #save_operation_class : ::Report::SaveOperation.class
- #target_total_count : Int32
- #target_total_count=(_target_total_count : Int32::Lucky::ColumnType)
-
#unqualified_processed_rate
不合格率 = 1 - 合格率
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #workshop : Workshop
- #workshop! : Workshop
- #workshop_count : Int64
- #workshop_id : Workshop::PrimaryKeyType
- #workshop_id=(_workshop_id : Workshop::PrimaryKeyType::Lucky::ColumnType)
- #workshop_query
Instance methods inherited from class BaseModel
creation_date
creation_date
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
def self.new(id : Int64, created_at : Time, updated_at : Time, target_total_count : Int32, processed_total_count : Int32, qualified_total_count : Int32, report_date : String, report_year_num : Int32, report_month_num : Int32, report_week_num : Int32, process_line_id : Int64, workshop_id : Int64, manufactory_id : Int64, company_id : Int64)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation