*/ final class SupportAppMapper extends DataMapperFactory { /** * Columns. * * @var array * @since 1.0.0 */ public const COLUMNS = [ 'support_app_id' => ['name' => 'support_app_id', 'type' => 'int', 'internal' => 'id'], 'support_app_name' => ['name' => 'support_app_name', 'type' => 'string', 'internal' => 'name'], 'support_app_unit' => ['name' => 'support_app_unit', 'type' => 'int', 'internal' => 'unit'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ public const TABLE = 'support_app'; /** * Primary field name. * * @var string * @since 1.0.0 */ public const PRIMARYFIELD = 'support_app_id'; }